- 论坛徽章:
- 0
|
本帖最后由 ccporxy 于 2011-08-09 10:22 编辑
源码跟进去发现 listdir 实际上是调用了win32 函数 FindFirstFile FindNextFile
来枚举目录信息。只不过会扩展一下传入的路径信息。
- if (wch != L'/' && wch != L'\\' && wch != L':')
- wnamebuf[len++] = L'\\';
- wcscpy(wnamebuf + len, L"*.*");
复制代码 当传入参数为'c 系统所在分区),会扩展为'c:*.*',如果此时分区为系统分区的话(并且当前进程
所在目录也在同一个分区上),实际上查找的目录是当前进程所在目录。
其余情况<drive>: 等同于 <drive>:/ 等同于 <drive>:/*.* <drive>:/*
至于原因查看了msdn文档,没有收获。
还是请大神来解释吧。
查询了下关于path的描述:
Relative Paths
For functions that manipulate files, the file names can be relative to the current directory. A file name is relative to the current directory if it does not begin with one of the following:
A drive name, which is either a drive letter followed by a colon, or a UNC name.
A directory name separator (backslash), for example, \subdirectory).
If the file name begins with a disk designator and a backslash, it is a full path (for example, C:\tmp). If a file name begins with only a disk designator, it is a relative path to the current directory on the drive with the specified letter (for example, C:tmp.txt refers to a file in the current directory on drive C).
原因就在此了~ |
|