Channel9Downloader.DataAccess.FolderUtils.GetUserDataPath C# (CSharp) Method

GetUserDataPath() public method

Gets the user's application data path.
public GetUserDataPath ( ) : string
return 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