using System; using System.Collections.Generic; using System.Text; namespace Shared.Phone.UserCenter { /// /// 文件夹,文件的名字的定义Resourse(为了防止别人一目了然破解,加密一下这个东西) /// 暂定密匙:4^Olh_3f /// public class DirNameResourse { /// /// 本地缓存的根目录【文件夹】,不需要备份,也不需要上传,只用于当前手机的缓存 /// public const string LocalMemoryDirectory = "43ae770b6035427b21bddd7e6a1eeb88"; /// /// 自动备份【文件夹】(编辑,追加) /// public const string AutoBackupDirectory = "d560f44a32930569c0328bfe0c7d3beaf6a58bcb2d5f1d3b"; /// /// 自动备份【文件夹】(删除) /// public const string AutoBackupdeleteDirectory = "eced1a7b88bb9776ff31c79f6e7a48d69eac74ee0c447d6b"; /// /// 是否自动下载云端的备份数据的【判断文件】 /// public const string AutoDownLoadBackupCheckFile = "93ee2d7241c3d19d7d94317f51a94d7fab1400f8f4f37a5a"; /// /// 下载备份的时候所使用的临时【文件夹】 /// public const string DownLoadBackupTempDirectory = "2492bc79ce8b87b49beaea261f87d52efc5dd3dfae2c6811be65781d5faccd40"; /// /// 保存APP最后选择的网关ID的【文件名字】(不需要备份及上传) /// public const string AppOldSelectGatewayFile = "1f2d13116b051b76b111b99246bb23f1"; /// /// 自动备份不需要再次提醒的【文件名】(不需要备份及上传) /// public const string AutoBackupNotPromptedFile = "9479e724666d970fb9ae5dff2b739cf1bc8c1a95d63bf182dc8f290cac98592f"; /// /// 保存安防记录的【文件夹】 /// public const string SafeguardAlarmDirectory = "b101c307ddc2fae59a133a31604304560180c5748135de81"; /// /// 保存门锁记录的【文件夹】 /// public const string DoorLockAlarmDirectory = "4662b1f6eb97dbe44395a2546fd47c273a3def89f56951c6"; /// /// 安防用户密码的缓存密码【文件】 /// public const string SafeguardUserPassword = "b101c307ddc2fae587d864275bb8a23478b37ce3bd5c5db1"; /// /// 上传网关备份文件到云端的临时【文件夹】 /// public const string GatewayBackupDirectory = "99a6644e29e7bdcd65d85219312eb4f4cf013d26f4e12925"; /// /// 下载分享文件的临时【文件夹】 /// public const string DownLoadShardDirectory = "98f878a57c59bb6538677bc55187ffab6e8def815981fdbe"; /// /// 记录分享文件更新时间的【文件】 /// public const string ShardFileUpdateFile = "b4137733cb527d03d1ee8417c8230a8b35109a02db4d0528"; /// /// 保存用户个人信息的【文件】 /// public const string UserInfoFile = "c24d43aab01bbe521535c9fae517ffab"; /// /// 保存断网时候,备份网关id用的【文件】 /// public const string BackupGatewayIdFile = "5f7fdfe4258d4cd19a433412468a586834643bed528cdba1"; /// /// 干接点私有属性的保存文件 /// public const string DryContactFunctionFile = "10afbada0199511de13edc60259ed03e6ebc817d8a53adce"; /// /// 保存成员列表信息的【文件】 /// public const string MemberListInfoFile = "84cee4c17e97d9af86e4778aeecae01cc0ab6d9f3409478c"; /// /// 存放用户图片的【文件夹】 /// public const string UserPictrueDirectory = "e3263f227598072fef2a204fb1656cd2"; /// /// 保存账号配置的【文件】 /// public const string AccountOptionFile = "d33690329dfdf2e5dcce0280893b95a0db47b5be13b46aa0"; /// /// 保存住宅顺序的【文件】 /// public const string ResidenceSortFile = "b79583bed6909a524e81e2461474f8dcc7a45bf99cecee93"; /// /// 保存楼层顺序的【文件】 /// public const string FloorSortFile = "2b156ce95c29de53578282f4d7228f60"; /// /// 保存房间顺序的【文件】 /// public const string RoomSortFile = "b1b9f1a50064016f62dea3f160703de2"; /// /// 保存设备顺序的【文件】 /// public const string DeviceSortFile = "9887fffbee29c2566351e3ef2ddea279"; /// /// 保存Log的【文件夹】 /// public const string LogDirectory = "820c65b54b6f3f2a"; /// /// 分享楼层的【文件】 /// public const string ShardFloorFile = "5f05f7a6f26c51d1b096dc777f6c02f2"; } }