日期:2014-05-18  浏览次数:20839 次

创建文件夹及判断文件夹大小
各位大大,现有两个问题。
1.public readonly string AppPath = Environment.GetEnvironmentVariable("AppData") + @"Temp\a\b\c";
文件夹只能创建到 AppData\Romaing\Temp\a\b\c中,现在我想创建到 AppData\Local\Temp\a\b\c中,应该如何操作?
2.现在我还想判断文件夹c的大小,应该如何操作?

------解决方案--------------------
1、
C# code
System.IO.Path.GetTempPath() + @"a\b\c";

------解决方案--------------------
C# code


 if (!Directory.Exists(pathStr))
        {
            Directory.CreateDirectory(pathStr);
        }