- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我看到以下代码片段出现奇怪的错误:
File.Copy(oldPath, targetPath,true);
File.SetAttributes(targetPath, FileAttributes.Normal);
一个文件必须移动到其他地方,因为我在源路径上没有写权限,所以我复制了文件并为目标文件设置了访问权限。在我的系统 (Windows 7 SP1) 上,这工作正常。
但是,在(据我所知)任何 Windows 10 机器上,程序在 File.SetAttributes 处崩溃并显示消息
System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.IO.FileNotFoundException: Could not find file 'C:\ProgramData\...\BlankDb.sdf'.
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.File.SetAttributes(String path, FileAttributes fileAttributes)
这告诉我即使代码已经通过了 File.Copy() 行,文件还没有被成功复制。 File.Copy() 是否不再同步工作,或者在这方面在不同的操作系统上有什么其他改变吗?
坦率地说,我很难过。起初我想到了时间问题并尝试将 Copy 调用包装在一个新线程中,直到我读到 File.Copy() 在复制成功或遇到错误之前无论如何都不会返回。
最佳答案
你可以试试这段代码。 (请将路径更改为您的路径)
static void Main(string[] args)
{
var oldDir = new DirectoryInfo("D:\\Personal\\Projects\\Desktop\\StackSolutions\\ConsoleApp1\\ConsoleApp1\\OldFilePath\\funy.jpg");
var newDir = new DirectoryInfo("D:\\Personal\\Projects\\Desktop\\StackSolutions\\ConsoleApp1\\ConsoleApp1\\NewFilePath\\funy1.jpg");
var oldPath = oldDir.FullName;
var targetPath = newDir.FullName;
File.Copy(oldPath, targetPath);
File.SetAttributes(targetPath, FileAttributes.Normal);
}
关于c# - File.Copy(sourceFileName,destFileName,overwrite) 在某些操作系统上不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33671053/
我确定这是有效的! 我有一个 maven 依赖插件配置,用于将 java 服务包装器放入应用程序组装程序目标文件夹中的特定文件夹中。 org.apache.maven.plugins
在使用此命令复制依赖项时,我尝试更改本地文件夹和 jar 名称 mvn install dependency:copy-dependencies destFileName 似乎被 maven 忽略了。
我看到以下代码片段出现奇怪的错误: File.Copy(oldPath, targetPath,true); File.SetAttributes(targetPath, FileAttributes
我是一名优秀的程序员,十分优秀!