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
if file_ext ==".zip" or file_ext ==".rar" or file_ext ==".7z"
28
+
move file to '{downloads}/zip/{file}'
29
+
end_if
30
+
31
+
if file_ext ==".png" or file_ext ==".jpg" or file_ext ==".jpeg" or file_ext ==".gif"
32
+
move file to '{downloads}/images/{file}'
33
+
end_if
34
+
35
+
if file_ext ==".pdf" or file_ext ==".docx" or file_ext ==".txt"
36
+
move file to '{downloads}/docs/{file}'
37
+
end_if
38
+
39
+
if file_ext !=".exe" and file_ext !=".zip" and file_ext !=".rar" and file_ext !=".7z" and file_ext !=".png" and file_ext !=".jpg" and file_ext !=".jpeg" and file_ext !=".gif" and file_ext !=".pdf" and file_ext !=".docx" and file_ext !=".txt"
0 commit comments