draw.io Desktop 30.2.6 by Razvan Serea
draw.io desktop is a downloadable security-first diagramming application that runs on Windows, MacOS and Linux. Creating diagrams in the desktop app doesn’t need an internet connection. This is useful when you are disconnected or when you must create diagrams in a highly secure environment, where data protection is of the utmost importance. When you use the draw.io desktop app, your diagrams will be stored on your local device. Because this is a stand-alone application, also designed to run offline, there are no interfaces to cloud storage platforms available. Of course, you can still store your diagrams in folders that are synchronised to your cloud storage if you wish.
Easy-to-use diagram editor
The draw.io apps work just like the office and drawing tools you are used to using.
Drag and drop shapes from the shape libraries and drag to draw connectors between them.
Drag connectors to add waypoints and set a precise shape and position, or let them reroute automatically.
Double click and start typing to add a label to anything.
Create tables and swimlane flows with a familiar tool.
Style shapes and connectors with customisable palettes, sketch options, fonts and text formatting tools.
Search for shapes, including in open-source icon libraries.
Use our vast libraries of shapes and templates, organised into logical categories, to create a range of diagrams and infographics.
Generate diagrams from text descriptions using our smart templates.
Diagram faster with keyboard shortcuts.
draw.io Desktop 30.2.6 changelog:
Uses electron 42.5.0
#2452
Updates to draw.io core 30.2.6.
Download: draw.io 64-bit | Standalone (Open Source)
Download: draw.io 32-bit | ARM64 | ARM64 Standalone
Links: draw.io Home Page | Project page @GitHub | Screenshot
Get alerted to all of our Software updates on Twitter at @NeowinSoftware
Question
jmander
Hello,
I am trying to write a batch script that will run automatically daily to do the following.
1. Move files older than 2 days to from the main directory(Jason) to archive directory.
2. Zip files in the archive directory that are older than 1 week and delete files from this directory
that are older than 6 months.
3. I want to run this script from a different directory(not the directory that has the files).
I wrote the following script but its not correctly working. Can you please help.
REM move files older than 2 days to a archive directory
robocopy D:\Agentrics\integration\incoming\Jason D:\Agentrics\integration\incoming\Jason\archive /MOV
/MINAGE:2
Question: How can i change the command below to zip files older than 1 week. Also i want to put this
command in a batch file that will run from a different location? Is it possible that the zipped files
can have the same creation date and time as the original files?
REM zip all files in the backup directory
FOR %%A IN (*.TXT*, *.cpi*) DO "C:\Program Files\WinRAR\WinRAR.exe" a -r "%%~nA.zip" "%%A"
FOR %%A IN (*.TXT,*.cpi) DO DEL "D:\Agentrics\integration\incoming\Jason\archive\.cpi*" "%%A"
REM Delete all files in the backup directory that are older than 6 months
forfiles /p D:\Agentrics\integration\incoming\Jason\archive /s /m *.* /d -500 /c "cmd /c del /q @path"
Kind Regards,
Jason
Link to comment
https://www.neowin.net/forum/topic/1138966-batch-file-to-move-compress-delet3-files/Share on other sites
9 answers to this question
Recommended Posts