1) Is there any way for me to get Pythonista to show me the files I have created in my scripts?
( I have found no method so far ...)
2) If the answer to 1) is No;
Has anyone created a File Utiliy Script which would
a) Find all such files, and show a list of names and their paths
b) Allow viewing of file contents and meta data
c) Allow Duplication, Movement, and Deletion of such files
All this came about when I realised that I was starting to create detritus, and I am looking for a means of garbage file management.
.Photocqrd .... who created that.???.. OH YES I remember, it was an early typo, that I corrected in the script but never dealt with as a redundant file created in error.
I am currently using these commands
files = os.listdir()
print(files)
print(len(files))
os.remove('.Filename')

