You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Task.Run(()=>{Encrypt(Password,file,SavePath+"/"+Path.GetFileName(file));TotalProcessedFile=TotalProcessedFile+1;if(TotalProcessedFile>=Files.Length){Console.WriteLine("Mass File Encryption Process completed, press enter to exit.");}});
244
+
if(Path.GetFileName(file)!="")
245
+
TotalFileAvaible=TotalFileAvaible+1;
246
+
Task.Run(()=>{Encrypt(Password,file,SavePath+"/"+Path.GetFileNameWithoutExtension(file)+Path.GetExtension(file));TotalProcessedFile=TotalProcessedFile+1;if(TotalProcessedFile>=Files.Length){Console.WriteLine("Mass File Encryption Process completed, press enter to exit.");}});
Task.Run(()=>{Decrypt(Password,file,SavePath+"/"+Path.GetFileName(file));TotalProcessedFile=TotalProcessedFile+1;if(TotalProcessedFile>=Files.Length){Console.WriteLine("Mass File Decryption Process completed, press enter to exit.");}});
265
+
if(Path.GetFileName(file)!="")
266
+
TotalFileAvaible=TotalFileAvaible+1;
267
+
Task.Run(()=>{Decrypt(Password,file,SavePath+"/"+Path.GetFileNameWithoutExtension(file)+Path.GetExtension(file));TotalProcessedFile=TotalProcessedFile+1;if(TotalProcessedFile>=Files.Length){Console.WriteLine("Mass File Decryption Process completed, press enter to exit.");}});
0 commit comments