有些人和我在我们的 C 驱动器中存储了相同的文件夹,但每个文件夹位于不同的位置。我正在尝试编写可以在每台机器上访问此文件夹的代码。我试过"~/xx/xx"
了,但它不起作用。我该怎么做?
更新: 这就是我现在拥有的:
foreach (var dir in Directory.EnumerateDirectories(@"C:\", "*dataDir*", SearchOption.AllDirectories))
{
Debug.WriteLine(dir);
}
例外:System.UnauthorizedAccessException: Access to the path 'C:\$INPLACE.~TR\' is denied.