We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cache directory (Returns the LocalCacheFolder directory)
FileSystem.Current.CacheDirectory;
C:/Users/{MyName}/AppData/Local/Packages/{GUID}_{hash}/LocalCache/
App data directory (Returns the LocalFolder directory that is backed up to the cloud)
FileSystem.Current.AppDataDirectory;
C:/Users/{MyName}/AppData/Local/Packages/{GUID}_{hash}/LocalState/
For NetStandard (and others) then it can just return:
System.AppContext.BaseDirectory
https://docs.microsoft.com/en-us/dotnet/maui/platform-integration/storage/file-system-helpers?tabs=windows
Notice MAUI performs virtualization so when resolving SpecialFolder.LocalApplicationData then it automatically redirect to custom folder:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Cache directory (Returns the LocalCacheFolder directory)
App data directory (Returns the LocalFolder directory that is backed up to the cloud)
For NetStandard (and others) then it can just return:
https://docs.microsoft.com/en-us/dotnet/maui/platform-integration/storage/file-system-helpers?tabs=windows
Notice MAUI performs virtualization so when resolving SpecialFolder.LocalApplicationData then it automatically redirect to custom folder:
The text was updated successfully, but these errors were encountered: