https://github.com/coderserdar/delphidirectorycleaner
This is a Delphi project which is used to clear temp files like *.~dfm, *.~pas, *.~dcu. That is a console application and if you don't give a path, it will clear folder where the app in it
https://github.com/coderserdar/delphidirectorycleaner
delphi delphi7 directory object-pascal recursive recursive-algorithm
Last synced: 3 months ago
JSON representation
This is a Delphi project which is used to clear temp files like *.~dfm, *.~pas, *.~dcu. That is a console application and if you don't give a path, it will clear folder where the app in it
- Host: GitHub
- URL: https://github.com/coderserdar/delphidirectorycleaner
- Owner: coderserdar
- License: apache-2.0
- Created: 2021-10-18T14:37:32.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-08T14:08:15.000Z (about 3 years ago)
- Last Synced: 2025-01-30T00:30:45.532Z (9 months ago)
- Topics: delphi, delphi7, directory, object-pascal, recursive, recursive-algorithm
- Language: Pascal
- Homepage:
- Size: 96.7 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Delphi Directory Cleaner
       
| Programming Language | IDE Version | 3rd Party Components |
|------------------------|--------------|------------------------|
| *Delphi* | *Delphi 7* | *-* |
This is a **Windows Console** app which is used to *clear temp Delphi files* from a folder in file system.
This app is written in **Delphi** programming language and in **Delphi 7** IDE.
This app works by two methods.
- If you run console app with double click, app will clear the temp files in folder which is app's location folder.
- If you run app by command prompt with a specific path, app will clear the temp files in folder which we gave as a parameter.
Actually [CnPack](http://www.cnpack.org/showdetail.php?id=385&lang=en) plug in for *Delphi IDE* makes it with one click.
In Delphi project compilation, IDE creates temp files with extension like *.dcu* etc.
But I want to make it by myself with a recursive algorithm.
# Documentation and Screenshots
You can look up the source code's documentation in [Documentation](https://github.com/coderserdar/DelphiDirectoryCleaner/blob/main/Documentation/DelphiDirectoryCleaner.pdf) section. In this *PDF* file you can analyze source code. This PDF file supports Hyperlink, so you can go to a specific function easily. I try to write detailed comments in functions.