special folders
This commit is contained in:
parent
8e7503e2a0
commit
2073a2f461
2 changed files with 15 additions and 8 deletions
|
|
@ -505,11 +505,7 @@ namespace ZicMoove.Droid
|
|||
get
|
||||
{
|
||||
if (imagesFolder != null) return imagesFolder;
|
||||
var appData =
|
||||
System.Environment.GetFolderPath(System.Environment.SpecialFolder.ApplicationData);
|
||||
imagesFolder = System.IO.Path.Combine(appData, Constants.ImagePath);
|
||||
DirectoryInfo di = new DirectoryInfo(imagesFolder);
|
||||
if (!di.Exists) di.Create();
|
||||
imagesFolder = Constants.ImagePath.GetSpecialFolder();
|
||||
return imagesFolder;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue