我希望列出给定目录的子目录,所以我使用Directory.GetDirectories(string)
. 一切正常,但我没有看到“。” 和返回数组中的“..”。那两个不应该在吗?
问问题
163 次
2 回答
2
假设你打电话给Directory.GetDirectories(path);
then
.
是path
和
..
是个new DirectoryInfo(path).Parent.FullName
于 2013-05-05T15:48:42.467 回答
2
GetDirectories 仅返回子目录。不是父目录,不是当前目录。
文档:
Return Value
Type: System.String[]
An array of the full names (including paths) of subdirectories in the specified path.
于 2013-05-05T15:41:42.750 回答