diff --git a/mv_unique_files.py b/mv_unique_files.py index 312261b..51b5ce4 100644 --- a/mv_unique_files.py +++ b/mv_unique_files.py @@ -81,6 +81,7 @@ if __name__ == "__main__": csv_path = "result.csv" df_csv = pd.DataFrame(columns=['FileName', 'Path', 'inode', 'NumberOfLinks', 'CheckSum']) for x in paths: + print(str(x)) if x.lstat().st_size > min_file_size * 1024 * 1024: new_row = {'FileName': x.name, 'Path': str(x),