File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ struct Utils {
90
90
}
91
91
92
92
static func write( _ dictionary: NSDictionary , to fileName: String ) {
93
- let mainDirectory = FileManager . default. homeDirectoryForCurrentUser. appendingPathComponent ( " .mainotifications " )
93
+ let mainDirectory = FileManager . default. homeDirectoryForCurrentUser. appendingPathComponent ( " .ibmnotifier " )
94
94
if !FileManager. default. fileExists ( atPath: mainDirectory. path) {
95
95
do {
96
96
try FileManager . default. createDirectory ( at: mainDirectory, withIntermediateDirectories: false , attributes: nil )
@@ -107,7 +107,7 @@ struct Utils {
107
107
}
108
108
109
109
static func delete( _ fileName: String ) {
110
- let mainDirectory = FileManager . default. homeDirectoryForCurrentUser. appendingPathComponent ( " .mainotifications " )
110
+ let mainDirectory = FileManager . default. homeDirectoryForCurrentUser. appendingPathComponent ( " .ibmnotifier " )
111
111
if FileManager . default. fileExists ( atPath: mainDirectory. path) {
112
112
let filePath = mainDirectory. appendingPathComponent ( fileName)
113
113
if FileManager . default. fileExists ( atPath: filePath. path) && FileManager . default. isDeletableFile ( atPath: filePath. path) {
You can’t perform that action at this time.
0 commit comments