-3
SetCurrentDir(s); // S='//localhost/'
FindFirst(s+'*.*', faDirectory, searchResult);
x:=searchResult.Name;  // Result (name finded folder)
  1. 我正在尝试在 //127.0.0.1/ 目录中查找文件夹。此代码在 localhost 目录中工作,结果为空。

  2. 如何检测检测到的文件夹是可写的还是只读的?

4

1 回答 1

4

\\127.0.0.1\不是目录。它是本地计算机上共享的任何文件夹的基本 UNC。如何列出共享文件夹,请参阅此问题或在网上搜索示例:

在树视图中枚举网络计算机和共享文件夹的列表?

于 2013-04-15T16:53:22.693 回答