mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 13:50:14 +00:00
14 lines
343 B
C#
14 lines
343 B
C#
|
using System.IO;
|
|||
|
|
|||
|
namespace MSFSPopoutPanelManager.Shared
|
|||
|
{
|
|||
|
public class FileIo
|
|||
|
{
|
|||
|
public static string GetUserDataFilePath()
|
|||
|
{
|
|||
|
var startupPath = Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location);
|
|||
|
return Path.Combine(startupPath, "userdata");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|