28 lines
1.0 KiB
C#
28 lines
1.0 KiB
C#
using BS.SharedLauncher.Extensions;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BS.SharedLauncher.Information
|
|
{
|
|
public static class BeWoPathFileConfig
|
|
{
|
|
private static readonly string lockFileName = "_lock";
|
|
private static readonly string zipName = "bewo{0}.zip";
|
|
private static readonly string dotbewoinfo = ".bewoinfo";
|
|
private static readonly string latestFileName = "latest";
|
|
private static readonly string subdir = "BeWoPlaner";
|
|
private static readonly string testForPermission = "bewo.permission.test";
|
|
|
|
public static string LockFileName => lockFileName;
|
|
public static string ZipFormatName => zipName;
|
|
public static string DotBeWoInfo => dotbewoinfo;
|
|
public static string LatestBeWoInfo => latestFileName + DotBeWoInfo;
|
|
public static string SubDirectory => subdir;
|
|
public static string TestForPermissionFile => testForPermission;
|
|
}
|
|
}
|