Channel9Downloader.DataAccess.FolderUtils.GetUserDataPath C# (CSharp) 메소드

GetUserDataPath() 공개 메소드

Gets the user's application data path.
public GetUserDataPath ( ) : string
리턴 string
        public string GetUserDataPath()
        {
            return @".\";

            // var dir = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
            // dir = Path.Combine(dir, "MadCowDevelopment", "Channel9Downloader");
            // if (!Directory.Exists(dir))
            // {
            //     Directory.CreateDirectory(dir);
            // }

            // return dir;
        }
FolderUtils