sharee.bike-App/LastenradBayern/TINK.iOS/Device/SpecialFolder.cs

27 lines
708 B
C#
Raw Normal View History

2021-11-07 19:42:59 +01:00
using System;
using TINK.Model.Device;
using Xamarin.Forms;
[assembly: Dependency(typeof(TINK.iOS.Device.SpecialFolder))]
namespace TINK.iOS.Device
{
2022-09-06 16:08:19 +02:00
public class SpecialFolder : ISpecialFolder
{
/// <summary>
/// Get the folder name of external folder to write to.
/// </summary>
/// <returns></returns>
public string GetExternalFilesDir()
{
return Environment.GetFolderPath(Environment.SpecialFolder.Personal);
}
2021-11-07 19:42:59 +01:00
2022-09-06 16:08:19 +02:00
/// <summary> Gets the folder name of the personal data folder dir on internal storage. </summary>
/// <returns>Directory name.</returns>
public string GetInternalPersonalDir()
{
return Environment.GetFolderPath(Environment.SpecialFolder.Personal);
}
2021-11-07 19:42:59 +01:00
2022-09-06 16:08:19 +02:00
}
2021-11-07 19:42:59 +01:00
}