string sourcePath = GetValue(key);
if (!Directory.Exists(@sourcePath))
{
throw new Exception("Source path in does not exist");
}
在調試,看着文本可視化文件的sourcePath
回報位置:Directory.Exists(文件)不工作
C:\用戶\約翰\桌面\ Sales.dat
即使我知道flie存在,也會拋出異常。我可以在桌面上看到它,如果我將C:\ Users \ John \ Desktop \ Sales.dat粘貼到資源管理器中,則會打開該文件。請指教。
你的路徑指向一個文件,你需要['文件。 Exists'](http://msdn.microsoft.com/en-us/library/system.io.file.exists(v = vs.110)的.aspx) – Habib