kopia lustrzana https://github.com/bellingcat/auto-archiver
5 wiersze
103 B
Python
5 wiersze
103 B
Python
![]() |
import os
|
||
|
|
||
|
def mkdir_if_not_exists(folder):
|
||
|
if not os.path.exists(folder):
|
||
|
os.mkdir(folder)
|