Dir 2 file
Author: L | 2025-04-23
DIR-2 can be filed online by logging into the MCA portal, selecting the ‘e-Forms’ option, and following the instructions for DIR-2 filing. Why is DIR-2 needed? DIR-2 is needed to obtain the consent of an individual willing to act Form 32 is not available now and it would be impossible to file form DIR 12 with form 32 attachments. Form DIR-2. Download Free PDF Form DIR-2
Dir 2 File 1.2.2 free download. Dir 2 File is a small utility that
@echo offcd/d "X:\Root Dir"||goto :eof setlocal EnableDelayedExpansion for /f tokens^=* %%G in ('where /r .\ *_*.cvs /t' )do set "_n=%%~nG" & call %:^) "!_n!" "_!_n:*_=!"%:^)if not "%~1" == "" (set "_file=%~1" && (for /f skip^=1^tokens^=1^,4* %%I in ( 'where /r .\ !_file:%~2^=!_*.cvs /t^|sort /r')do del /q /f /a: "%%K") & exit /b )else endlocal && goto :eOfI understand that this type of action can lead to an irreversible error when applying an attempt without the proper backups first.I also understand that without much knowledge/intimacy with the behavior of the tool used, some bad (unexpected) result may result in just trying such a task.Considering this, below is a way to create a scenario for testing without exposing the real environment to risks of irreversible loss, and safe evaluation of the results before applying it to the real files/folders involved.The scope is summarized in:Create a folder structure/treeCreate files in the tree and with different sizesCheck the results of the commands with the pre-set files as largerApply the commands to delete the files keeping the largest filesCheck the results and if other files (unique) were keptIt intends to be something similar to what was elaborated/suggestedalong the lines of this answerCreate a folder structure/treefor %%i in (1,2,3,4)do for %%I in (1,2,3,4 )do 2>nul md "%~dp0\Root Dir\Dir 00%%i\Sub Dir 00%%I"The tree of created folders results in:> Tree /A Folder PATH listingVolume serial number is 9A8E-862EX:.\---Root Dir +---Dir 001 | +---Sub Dir 001 | +---Sub Dir 002 | +---Sub Dir 003 | \---Sub Dir 004 +---Dir 002 | +---Sub Dir 001 | +---Sub Dir 002 | +---Sub Dir 003 | \---Sub Dir 004 +---Dir 003 | +---Sub Dir 001 | +---Sub Dir 002 | +---Sub Dir 003 | \---Sub Dir 004 \---Dir 004 +---Sub Dir 001 +---Sub Dir 002 +---Sub Dir 003 \---Sub Dir 004Create files in the tree and with different sizesfsutil file createnew "X:\Root Dir\AAA_ABC.cvs" 11326000fsutil file createnew "X:\Root Dir\BBB_ABC.cvs" 9506000fsutil file createnew "X:\Root Dir\CCC_ABC.cvs" 10690000fsutil file createnew "X:\Root Dir\DDD_ABC.cvs" 14995000fsutil file createnew "X:\Root Dir\EEE_ABC.cvs" 7431000fsutil file createnew "X:\Root Dir\A00_ABC.cvs" 7131000fsutil file createnew "X:\Root Dir\Dir 001\AAA_AAC.cvs" 11964000fsutil file createnew "X:\Root Dir\Dir 001\BBB_APD.cvs" 3307000fsutil file createnew "X:\Root Dir\Dir 001\CCC_AED.cvs" 3878000fsutil file createnew "X:\Root Dir\Dir 001\DDD_AAD.cvs" 13346000fsutil file createnew "X:\Root Dir\Dir 001\EEE_ART.cvs" 11001000fsutil file createnew "X:\Root Dir\Dir 001\B00_ART.cvs" 14115000fsutil file createnew "X:\Root Dir\Dir 002\AAA_ADC.cvs" 9417000fsutil file createnew "X:\Root Dir\Dir 002\BBB_AAD.cvs" 6965000fsutil file createnew "X:\Root Dir\Dir 002\CCC_ADF.cvs" 6282000fsutil file createnew "X:\Root Dir\Dir 002\DDD_AGD.cvs" 13628000fsutil file createnew "X:\Root Dir\Dir 002\EEE_AXT.cvs" 6987000fsutil file createnew "X:\Root Dir\Dir 002\C00_AXT.cvs" 12587000fsutil file createnew "X:\Root Dir\Dir 003\AAA_ADA.cvs" 10995000fsutil file createnew "X:\Root Dir\Dir 003\BBB_AAP.cvs" 11602000fsutil file createnew "X:\Root Dir\Dir 003\CCC_ADE.cvs" 15938000fsutil file createnew "X:\Root Dir\Dir 003\DDD_AGA.cvs" 13556000fsutil file createnew "X:\Root Dir\Dir 003\EEE_ARR.cvs" 2152000fsutil file createnew "X:\Root Dir\Dir 003\D00_ARR.cvs" 2651000fsutil file createnew "X:\Root Dir\Dir 004\AAA_ACD.cvs" AM X:\Root Dir\Dir 003\Sub Dir 004\AAA_DXA.cvsFile BBB13552000 9/4/2021 10:51:38 AM X:\Root Dir\Dir 004\BBB_ADP.cvsFile CCC15938000 9/4/2021 10:51:38 AM X:\Root Dir\Dir 003\CCC_ADE.cvsFile DDD18769000 9/4/2021 10:51:39 AM X:\Root Dir\Dir 001\Sub Dir 002\DDD_BDG.cvsFile EEE50111000 9/4/2021 10:51:41 AM X:\Root Dir\Dir 003\Sub Dir 003\EEE_DXT.cvs> dir /b /s /a-d|findstr \\[A-V][0][0]\_.*|find /v /c ""22Explaining what the bat is doing...Go to your destination / root folder, if not there, abort the bat file without executing any command below/next:cd/d "X:\Root Dir"||goto :eof The where command in the loop will list the layout files in the name AnyString_AnyString.cvs recursively (/r).for /f tokens^=* %%G in ('where /r .\ *_*.cvs /t' )do ...The set is saving the name (without the extension "%%~nG") of the file and on the same line bat calls function (label %:^)) passing the name (!_n!) and strings before (and with) the underline in the name as an argument.Ex: File in loop AAA_XYZ.cvs:Argument 1 = AAA_XYZArgument 2 = XYZEx: File in loop %%~GArgument 1 = !_n!Argument 2 = _!_n:*_=!Obs.: The substring in %2 argument is: AAA_XYZ == > AAA_XYZ == > XYZ ... set "_n=%%~nG" & call %:^) "!_n!" "_!_n:*_=!"If any arguments are passed, use them inside the first if(%1 == true) condition otherwise, if no arguments are passed, end bat, there are no more looped files to be handled by the function, so go to the end of the file, endingif not "%~1" == "" (do some in loop files) else (endlocal && goto :eOf)Once the processing takes place within the function, define _file with the filename given in argument %1set "_file=%~1" ... && (....We will make use of the strings that are returned in the loop by the execution of where, in space-delimited form (default) in occurrences 1 and in all after the 4th (4*), skipping one (skipˆ=1), where the skipped item is our largest file (intentionally ignored)...for /f skip^=1^tokens^=1^,4* %%I in (...:: %%I |--- Not In Use --| %%J %%K == *:: 1194000 9/4/2021 10:51:40 AM X:\Full\Path\To\AAA_DAC.cvs :: %%I size from file in loop :: %%J just to have all strings after %%J in %%K :: %%K all strings after %%J (including spaces if any):: %%I will be used as reference for sorting in sort /r :: %%J will not be used in any command:: %%K will be used to delete the file passing the fullpathUsing a substring to remove the characters in the name after the "", using the string passed by argument %2 (in !_file?;%2=!_*.cvs), this will get the reference to find the relevant parity file via the recursive where inside the loop, Finding all AAA* files, using part of the name in the first file passed (AAAA_*), in the second (BBB_*), third, etc..'where /r .\ !_file:%~2^=!_*.cvs /t^|sort /r'Transforms the output in reverse form, sortingDir 2 File 1.2.2 free download. Dir 2 File is a small utility
Available 7 files for D-Link DIR-825 Select Files Company D-Link Categories Networks Cards Model D-Link DIR-825 Description Wireless-N Quadband Home Router Firmware v2.01EU Operating System Firmware Version 2.01EU Size Driver 4.4MB File Name dir-825_fw_2.01eu.zip Observations DIR-825 Firmware Release NotesFirmware: 2.01EUHardware: B1Date: 2009/07/03Problems Resolved:1. Fixed schedule can't select data that include space char.2. Fixed schedule cannot over 24HR issue.3. ZIPB with DSL-320B.4. Fixed bug that MAC Filter Issue.Enhancements:1. Support Advanced DNS.2. Support Mac Safari can display autograph pictures.3. SharePort Module update for MAC and XP supporting.4. Graphical Authentication supportedKnown Issues:None----------------------------------------------------------------------------------------------------------------------------------Firmware: 2.00EUHardware: B1Date: 2009/03/17First Release Company D-Link Categories Networks Cards Model D-Link DIR-825 Description Wireless-N Quadband Home Router Initial firmware. Operating System Firmware Version 2.00 Size Driver 4.1MB File Name dir-825_fw_2-00_rev_b1.zip Observations DIR-825 Firmware Release NotesFirmware: 2.00EUHardware: B1Date: March 17, 20091. Initial firmware for DIR-825 B1 EU. Company D-Link Categories Networks Cards Model D-Link DIR-825 Description Wireless-N Quadband Home Router Quick Installation Guide Information Quick Installation Guide Operating System Manual Size Driver 1.7MB File Name dir-825_qig_1.00.pdf Observations Quick Installation GuideDIR-825Wireless N Quadband Home RouterPackage ContentsIf any of the items are missing, please contact your reseller.DIR-825Wireless NQuadband HomeRouterCD-ROM(D-LinkClick’n’Connect.Manual and Warranty)Ethernet (CAT5 UTP)CablePower AdapterDefault IP: 192.168.0.1Default Username: AdminDefault Password:Quick Installation1Remove the D-Link Clickand Connect CD. 2A. Be sure your Internetconnection is active. DONOT plug the router in yet.B. Insert the D-Link Click’nConnect CD into yourcomputer.Troubleshooting1. How do I configure my DIR-825 router without the CD, or check my WirelessNetwork Name (SSID) and Wireless Encryption Key?• Connect your PC to the router using an Ethernet. DIR-2 can be filed online by logging into the MCA portal, selecting the ‘e-Forms’ option, and following the instructions for DIR-2 filing. Why is DIR-2 needed? DIR-2 is needed to obtain the consent of an individual willing to act Form 32 is not available now and it would be impossible to file form DIR 12 with form 32 attachments. Form DIR-2. Download Free PDF Form DIR-2DIR File: How to open DIR file (and what it is)
4326000fsutil file createnew "X:\Root Dir\Dir 004\BBB_ADP.cvs" 13552000fsutil file createnew "X:\Root Dir\Dir 004\CCC_AFD.cvs" 7527000fsutil file createnew "X:\Root Dir\Dir 004\DDD_ADA.cvs" 5043000fsutil file createnew "X:\Root Dir\Dir 004\EEE_AXR.cvs" 2652000fsutil file createnew "X:\Root Dir\Dir 004\E00_AXR.cvs" 3552000fsutil file createnew "X:\Root Dir\Dir 001\Sub Dir 001\AAA_BCC.cvs" 4915000fsutil file createnew "X:\Root Dir\Dir 001\Sub Dir 001\BBB_BAA.cvs" 4621000fsutil file createnew "X:\Root Dir\Dir 001\Sub Dir 001\CCC_BFF.cvs" 15352000fsutil file createnew "X:\Root Dir\Dir 001\Sub Dir 001\DDD_BDD.cvs" 1902000fsutil file createnew "X:\Root Dir\Dir 001\Sub Dir 001\EEE_BYR.cvs" 4001000fsutil file createnew "X:\Root Dir\Dir 001\Sub Dir 001\F00_BYR.cvs" 11893000fsutil file createnew "X:\Root Dir\Dir 001\Sub Dir 002\AAA_BDD.cvs" 1778000fsutil file createnew "X:\Root Dir\Dir 001\Sub Dir 002\BBB_BPP.cvs" 10919000fsutil file createnew "X:\Root Dir\Dir 001\Sub Dir 002\CCC_BEE.cvs" 1031000fsutil file createnew "X:\Root Dir\Dir 001\Sub Dir 002\DDD_BDG.cvs" 18769000fsutil file createnew "X:\Root Dir\Dir 001\Sub Dir 002\EEE_BRY.cvs" 11401000fsutil file createnew "X:\Root Dir\Dir 001\Sub Dir 002\G00_BRY.cvs" 10582000fsutil file createnew "X:\Root Dir\Dir 001\Sub Dir 003\AAA_BAC.cvs" 11060000fsutil file createnew "X:\Root Dir\Dir 001\Sub Dir 003\BBB_BAP.cvs" 5780000fsutil file createnew "X:\Root Dir\Dir 001\Sub Dir 003\CCC_BDD.cvs" 2904000fsutil file createnew "X:\Root Dir\Dir 001\Sub Dir 003\DDD_BGD.cvs" 15582000fsutil file createnew "X:\Root Dir\Dir 001\Sub Dir 003\EEE_BYT.cvs" 17365000fsutil file createnew "X:\Root Dir\Dir 001\Sub Dir 004\H00_BAA.cvs" 4123000fsutil file createnew "X:\Root Dir\Dir 001\Sub Dir 004\AAA_BAA.cvs" 10044000fsutil file createnew "X:\Root Dir\Dir 001\Sub Dir 004\BBB_BDA.cvs" 1124000fsutil file createnew "X:\Root Dir\Dir 001\Sub Dir 004\CCC_BDD.cvs" 6117000fsutil file createnew "X:\Root Dir\Dir 001\Sub Dir 004\DDD_BGG.cvs" 16101000fsutil file createnew "X:\Root Dir\Dir 001\Sub Dir 004\EEE_BTT.cvs" 7312000fsutil file createnew "X:\Root Dir\Dir 001\Sub Dir 004\I00_BTT.cvs" 8271000fsutil file createnew "X:\Root Dir\Dir 002\Sub Dir 001\AAA_CXC.cvs" 1250000fsutil file createnew "X:\Root Dir\Dir 002\Sub Dir 001\J00_CXC.cvs" 2999000fsutil file createnew "X:\Root Dir\Dir 002\Sub Dir 001\BBB_CAA.cvs" 1264000fsutil file createnew "X:\Root Dir\Dir 002\Sub Dir 001\CCC_CFF.cvs" 5532000fsutil file createnew "X:\Root Dir\Dir 002\Sub Dir 001\DDD_CDD.cvs" 1198000fsutil file createnew "X:\Root Dir\Dir 002\Sub Dir 001\EEE_CYR.cvs" 3203000fsutil file createnew "X:\Root Dir\Dir 002\Sub Dir 001\K00_CYR.cvs" 3117000fsutil file createnew "X:\Root Dir\Dir 002\Sub Dir 002\AAA_CXD.cvs" 3008000fsutil file createnew "X:\Root Dir\Dir 002\Sub Dir 002\BBB_CPP.cvs" 10084000fsutil file createnew "X:\Root Dir\Dir 002\Sub Dir 002\CCC_CEE.cvs" 1005000fsutil file createnew "X:\Root Dir\Dir 002\Sub Dir 002\DDD_CDG.cvs" 8697000fsutil file createnew "X:\Root Dir\Dir 002\Sub Dir 002\EEE_CRY.cvs" 11099000fsutil file createnew "X:\Root Dir\Dir 002\Sub Dir 002\L00_CRY.cvs" 10310000fsutil file createnew "X:\Root Dir\Dir 002\Sub Dir 003\AAA_CAX.cvs" 9005000fsutil file createnew "X:\Root Dir\Dir 002\Sub Dir 003\BBB_CAP.cvs" 1178000fsutil file createnew "X:\Root Dir\Dir 002\Sub Dir 003\CCC_CDD.cvs" 3655000fsutil file createnew "X:\Root Dir\Dir 002\Sub Dir 003\DDD_CGD.cvs" 5530000fsutil file createnew "X:\Root Dir\Dir 002\Sub Dir 003\EEE_CYT.cvs" 2900000fsutil file createnew "X:\Root Dir\Dir 002\Sub Dir 003\M00_CYT.cvs" 2009000fsutil file createnew "X:\Root Dir\Dir 002\Sub Dir 004\AAA_CAX.cvs" 4101000fsutil file createnew "X:\Root Dir\Dir 002\Sub Dir 004\BBB_CDA.cvs" 2100000fsutil file createnew "X:\Root Dir\Dir 002\Sub Dir 004\CCC_CDD.cvs" 3600000fsutil file createnew "X:\Root Dir\Dir 002\Sub Dir 004\DDD_CGG.cvs" 15999000fsutil file createnew "X:\Root Dir\Dir 002\Sub Dir 004\EEE_CTT.cvs" 3123000fsutil file createnew "X:\Root Dir\Dir 002\Sub Dir 004\N00_CTT.cvs" 3923000fsutil file createnew "X:\Root Dir\Dir 003\Sub Dir 001\AAA_DAC.cvs" 1194000fsutil file createnew "X:\Root Dir\Dir 003\Sub Dir 001\BBB_DAA.cvs" 7017000fsutil file createnew "X:\Root Dir\Dir 003\Sub Dir 001\CCC_DXF.cvs" 8352000fsutil file createnew "X:\Root Dir\Dir 003\Sub Dir 001\DDD_DDD.cvs" 1199000fsutil file createnew "X:\Root Dir\Dir 003\Sub Dir 001\EEE_DXR.cvs" 4105000fsutil file createnew "X:\Root Dir\Dir 003\Sub Dir 001\O00_DXR.cvs" 2504000fsutil file createnew "X:\Root Dir\Dir 003\Sub Dir 002\AAA_DXD.cvs" 3558000fsutil file createnew "X:\Root Dir\Dir 003\Sub Dir 002\BBB_DXP.cvs" 12284000fsutil file createnew "X:\Root Dir\Dir 003\Sub Dir 002\CCC_DXE.cvs" 2811000fsutil file createnew "X:\Root Dir\Dir 003\Sub Dir 002\DDD_DXG.cvs" 1976000fsutil file createnew "X:\Root Dir\Dir 003\Sub Dir 002\EEE_DXY.cvs" 5132000fsutil file createnew "X:\Root Dir\Dir 003\Sub Dir 002\P00_DXY.cvs" 7801000fsutil file createnew "X:\Root Dir\Dir 003\Sub Dir 003\AAA_DXC.cvs" 2021000fsutil file createnew "X:\Root Dir\Dir 003\Sub Dir 003\BBB_DXP.cvs" 10209000fsutil file createnew "X:\Root Dir\Dir 003\Sub Dir 003\CCC_DXD.cvs" 2104000fsutil file createnew "X:\Root Dir\Dir 003\Sub Dir 003\DDD_DXD.cvs" 18584000fsutil file createnew "X:\Root Dir\Dir 003\Sub Dir 003\EEE_DXT.cvs" 50111000fsutil file createnew "X:\Root Dir\Dir 003\Sub Dir 003\Q00_DXT.cvs" 2150000fsutil file createnew "X:\Root Dir\Dir 003\Sub Dir 004\AAA_DXA.cvs" 14133000fsutil file createnew "X:\Root Dir\Dir 003\Sub Dir 004\BBB_DXA.cvs" 3284000fsutil file createnew "X:\Root Dir\Dir 003\Sub Dir 004\CCC_DDD.cvs" 8867000fsutil file createnew "X:\Root Dir\Dir 003\Sub Dir 004\DDD_DGG.cvs" 5911100fsutil file createnew "X:\Root Dir\Dir 003\Sub Dir 004\EEE_DTT.cvs" 7130000fsutil file createnew "X:\Root Dir\Dir 003\Sub Dir 004\R00_DTT.cvs" 9991000fsutil file createnew "X:\Root Dir\Dir 004\Sub Dir 001\AAA_ECC.cvs" 1491000fsutil file createnew "X:\Root Dir\Dir 004\Sub Dir 001\BBB_EAA.cvs" 6209000fsutil file createnew "X:\Root Dir\Dir 004\Sub Dir 001\CCC_EFF.cvs" 11355000fsutil file createnew "X:\Root Dir\Dir 004\Sub Dir 001\DDD_EDD.cvs" 8911000fsutil file createnew "X:\Root Dir\Dir 004\Sub Dir 001\EEE_EYR.cvs" 1125000fsutil file createnew "X:\Root Dir\Dir 004\Sub Dir 001\S00_EYR.cvs" 1893000fsutil file createnew "X:\Root Dir\Dir 004\Sub Dir 002\AAA_EDD.cvs" 3778000fsutil file createnew "X:\Root Dir\Dir 004\Sub Dir 002\BBB_EPP.cvs" 10704000fsutil file createnew "X:\Root Dir\Dir 004\Sub Dir 002\CCC_EEE.cvs" 8254000fsutil file createnew "X:\Root Dir\Dir 004\Sub Dir 002\DDD_EDG.cvs" 11769000fsutil file createnew "X:\Root Dir\Dir 004\Sub Dir 002\EEE_ERY.cvs" 9997000fsutil file createnew "X:\Root Dir\Dir 004\Sub Dir 002\T00_ERY.cvs" 9814000fsutil file createnew "X:\Root Dir\Dir 004\Sub Dir 003\AAA_EAC.cvs" 13251000fsutil file createnew "X:\Root Dir\Dir 004\Sub Dir 003\BBB_EAP.cvs" 7811000fsutil file createnew "X:\Root Dir\Dir 004\Sub Dir 003\CCC_EDD.cvs" 12904000fsutil file createnew "X:\Root Dir\Dir 004\Sub Dir 003\DDD_EGD.cvs" 4312000fsutil file createnew "X:\Root Dir\Dir 004\Sub Dir 003\EEE_EYT.cvs" 8021000fsutil file createnew "X:\Root Dir\Dir 004\Sub Dir 003\U00_EYT.cvs" 10999000fsutil file createnew "X:\Root Dir\Dir 004\Sub Dir 004\AAA_EAA.cvs" 11150000fsutil file createnew "X:\Root Dir\Dir 004\Sub Dir 004\BBB_EDA.cvs" 2484000fsutil file createnew "X:\Root Dir\Dir 004\Sub Dir 004\CCC_EDD.cvs" 6167000fsutil file createnew "X:\Root Dir\Dir 004\Sub Dir 004\DDD_EGG.cvs" 15900000fsutil file createnew "X:\Root Dir\Dir 004\Sub Dir 004\EEE_ETT.cvs" 8540000fsutil file createnew "X:\Root Dir\Dir 004\Sub Dir 004\V00_ETT.cvs" 7310000The tree of created folders and files results in:> Tree /F /AFolder PATH listingVolume serial number is 9A8E-862EX:.| Create_Files.cmd| Q1672774.cmd| \---Root Dir | A00_ABC.cvs | AAA_ABC.cvs | BBB_ABC.cvs | CCC_ABC.cvs | DDD_ABC.cvs | EEE_ABC.cvs | +---Dir 001 | | AAA_AAC.cvs | | B00_ART.cvs | | BBB_APD.cvs | | CCC_AED.cvs | | DDD_AAD.cvs | | EEE_ART.cvs | | | +---Sub Dir 001 | | AAA_BCC.cvs | | BBB_BAA.cvs | | CCC_BFF.cvs | | DDD_BDD.cvs | | EEE_BYR.cvs | | F00_BYR.cvs | | | +---Sub Dir 002 | | AAA_BDD.cvs | | BBB_BPP.cvs | | CCC_BEE.cvsWhat Is a DIR File and How to Recover Deleted DIR Files
Scenario:I have a large file that I want to seperate into many different files based on a common string. I want to run this tool on my Windows machine. The output files should be sent to a different folder.Windows Batch file:On your Windows machine, create a folder. Copy the file that you want to seperate into many files into the folder. Create a new file with a .bat extension (Windows Bacth file).split.bat@echo off setlocal enableextensions enabledelayedexpansionset "file=%1"set "pattern=%2"set /a cnt=1REM GET DATE/TIME TO CREATE NEW DIRfor /f "tokens=2-4 delims=/ " %%a in ('date /t') do (set mydate=%%c-%%a-%%b)for /f "tokens=1-3 delims=/:" %%a in ('echo %time%') do (set mytime=%%a-%%b-%%c)set dir=%mydate%-%mytime%if not exist %dir% mkdir %dir%for /F "tokens=*" %%A in (%file%) do ( set "line=%%A" set "pattern=%pattern%" if "!line:%pattern%=!"=="!line!" ( rem echo .... pattern not found ) else ( set /a cnt+=1 rem echo .... pattern found ) echo %%A >> %dir%/%file%_!cnt!)endlocalKeep in mind, a new directory will be created in the folder. It will have the format yyyy-mm-dd-HH-MM-ss.ss of the date and time of executing split.bat.UsageHow to use the Windows batch file:split.bat Example Input/OutoutInput file: test.txtthis,is,an,exampletesting;1,2,3453245,54352,2465,Command ran:Three output files produced:Output file 1: 2018-05-21-11-06-12.38/test.txt_1 this,is,an,example testing;1,2,3Output file 2: 2018-05-21-11-06-12.38/test.txt_2Output file 3: 2018-05-21-11-06-12.38/test.txt_3How To Open File With DIR Extension? - File Extension .DIR
Again and again Bug-Fix: Q-Dir blank List View on Windows 10 / 8.1!! SORRY the W10 Creators Update is not so good for Q-Dir :( Changes for v6.67 - v6.67.1 F5 Bug-Fix: When refreshing (updarte) the file list, it goes blank, onWindows-10 from Creators update. Update of the language files in Q-Dir. Changes for v6.66 - v6.67 Bugfix: Auto Expand the folders in the navigation area under Windows-10 Update of the language files in Q-Dir. Changes for v6.62 - v6.66 Bugfix: Mark the objects in list view under Windows-10 and Server 2016 Update of the language files in Q-Dir. Changes for v6.61 - v6.62 1. Small corrections and rebuilding/recompiling Q-Dir because virus alert (Trojan:Win32/Spurp.A!LaLa) from Windows-Defender on Windows-10, although no virus was present. 2. Update of the language files in Q-Dir. Changes for v6.58 - v6.61 Small corrections and General revision plus updating of the language files in Q-Dir the Alternative File Manager for Windows Changes for v6.57 - v6.58 Small corrections and rebuilding/recompiling Q-Dir because virus alert (Trojan:Win32/KatuA!TuruLuLu) from Windows-Defender on Windows-10, although no virus was present. Update of the language files in Q-Dir. Changes for v6.56 - v6.57 Again corrections for Windows 10 creators update. Bugfix: Mark the objects in list view General revision and updating of the language files Changes for v6.51 - v6.56 Improvements because of Windows 10 creators update. Bugfix: Slowly opening of directories and the disappearance of the scroll bar in the list view General revision and updating of the language files Changes for v6.48.4 - v6.49.1 New option: main menu / tools / file operations / L-mouse: move file confirm, helps at slips on the touch screen. Changes for v6.46 - v6.48 Bugfix when using the arrow keys to rename the files and/or folders in the Q-Dir List View. Updating of the language files in Q-Dir. New in version 6.47 // December 28th 2016 BugFix when run /silent -install e.g. for administrators. New in version 6.46.1 // December 7th 2016 Corrections in List view and Quick Links for Windows 8.1 and 10. General revision and updating of the language files Changes for v6.39 - v6.42 And again improvements and small adjustments in the file manager Q-Dir for Windows 10. General revision and updating of the language files New in version 6.41 // November 2th 2016 General revision and update of the language files Optimization and various fixes Changes for v6.38 - v6.39 And again Improvements and fixes in Q-Dir for Windows 10 and Update of the language files in Q-Dir. Changes for v6.37 - v6.38 Bugfix: occasional crash under Windows 10 at some system configurations. Changes for v6.36 - v6.37 Bugfix in Q-Dir when execute or open files in the list view under Windows-10. Changes for v6.35 - v6.36 Small adjustments in Q-Dir for Windows 10 and Windows Server 2016 plus Update of the language files in Q-Dir. Changes for v6.34 - v6.35 Improvements and small adjustments in the file manager Q-Dir. Changes for v6.33 - v6.34 Improvements in Q-Dir for Windows 10. DIR-2 can be filed online by logging into the MCA portal, selecting the ‘e-Forms’ option, and following the instructions for DIR-2 filing. Why is DIR-2 needed? DIR-2 is needed to obtain the consent of an individual willing to actForm DIR – 2 :How to download dir 2 Updated format
It´s easy to print on Windows the contents of folders, everything what you see in the File Explorer views on all Windows 11, 10, ... Desktop and Microsoft's Server OS!Please using the Print Button in Q-Dir toolbar or via the main menu "Print", it will always print the Current Folder View, Large Icons (Thumbnails), File Detail List, List, .... depending on what you are using in File Explorer to bring it to a paper page.Folder Print Examples:1.) ... The Folder Print Command 2.) ... Example print Large icons (thumbnails)! 3.) ... Explorer File detail list!4.) ... Simple File List Print!5.) ... ensuring background doesn't print?6.) ... Main advantages of the printing functions in Windows, explained in detail:1.) The Folder Print Command 1. Start as always: ►► the Quad-Explorer Q-Dir for all MS Windows OS2. Switch in Q-Dir to Thumbnails View! (... see Image-1 Point 1 and 2) (Image-1) Print what yo see in Explorer Views!2.) Example print Large icons (thumbnails)! and Easy Print the thumbnail Images from The File-Explorer views (Image-2) Thumbnails Explorer Print Example!3.) Explorer File detail list! (Image-3) Print File Details from Explorer Views!4.) Simple File List Print (Image-4) Print what you see in Explorer Views!This screenshot has been made under Windows 10, as you can see above in Windows 10 shot screenshot, you can easily use this folder print example as a solution on older versions of Microsoft's Windows operating systems, no matter if it is a windows desktop home computer , tablet-PC, Surface Pro / Go to go, or even a business server operating system is.It is really sometimes very useful and advantageous to print the contents of the folder. It is a simple yet effective directory Printing Toll in Q-Dir. It has been tested on various MS OS and successfully verified. 5.) ... ensuring backgroundComments
@echo offcd/d "X:\Root Dir"||goto :eof setlocal EnableDelayedExpansion for /f tokens^=* %%G in ('where /r .\ *_*.cvs /t' )do set "_n=%%~nG" & call %:^) "!_n!" "_!_n:*_=!"%:^)if not "%~1" == "" (set "_file=%~1" && (for /f skip^=1^tokens^=1^,4* %%I in ( 'where /r .\ !_file:%~2^=!_*.cvs /t^|sort /r')do del /q /f /a: "%%K") & exit /b )else endlocal && goto :eOfI understand that this type of action can lead to an irreversible error when applying an attempt without the proper backups first.I also understand that without much knowledge/intimacy with the behavior of the tool used, some bad (unexpected) result may result in just trying such a task.Considering this, below is a way to create a scenario for testing without exposing the real environment to risks of irreversible loss, and safe evaluation of the results before applying it to the real files/folders involved.The scope is summarized in:Create a folder structure/treeCreate files in the tree and with different sizesCheck the results of the commands with the pre-set files as largerApply the commands to delete the files keeping the largest filesCheck the results and if other files (unique) were keptIt intends to be something similar to what was elaborated/suggestedalong the lines of this answerCreate a folder structure/treefor %%i in (1,2,3,4)do for %%I in (1,2,3,4 )do 2>nul md "%~dp0\Root Dir\Dir 00%%i\Sub Dir 00%%I"The tree of created folders results in:> Tree /A Folder PATH listingVolume serial number is 9A8E-862EX:.\---Root Dir +---Dir 001 | +---Sub Dir 001 | +---Sub Dir 002 | +---Sub Dir 003 | \---Sub Dir 004 +---Dir 002 | +---Sub Dir 001 | +---Sub Dir 002 | +---Sub Dir 003 | \---Sub Dir 004 +---Dir 003 | +---Sub Dir 001 | +---Sub Dir 002 | +---Sub Dir 003 | \---Sub Dir 004 \---Dir 004 +---Sub Dir 001 +---Sub Dir 002 +---Sub Dir 003 \---Sub Dir 004Create files in the tree and with different sizesfsutil file createnew "X:\Root Dir\AAA_ABC.cvs" 11326000fsutil file createnew "X:\Root Dir\BBB_ABC.cvs" 9506000fsutil file createnew "X:\Root Dir\CCC_ABC.cvs" 10690000fsutil file createnew "X:\Root Dir\DDD_ABC.cvs" 14995000fsutil file createnew "X:\Root Dir\EEE_ABC.cvs" 7431000fsutil file createnew "X:\Root Dir\A00_ABC.cvs" 7131000fsutil file createnew "X:\Root Dir\Dir 001\AAA_AAC.cvs" 11964000fsutil file createnew "X:\Root Dir\Dir 001\BBB_APD.cvs" 3307000fsutil file createnew "X:\Root Dir\Dir 001\CCC_AED.cvs" 3878000fsutil file createnew "X:\Root Dir\Dir 001\DDD_AAD.cvs" 13346000fsutil file createnew "X:\Root Dir\Dir 001\EEE_ART.cvs" 11001000fsutil file createnew "X:\Root Dir\Dir 001\B00_ART.cvs" 14115000fsutil file createnew "X:\Root Dir\Dir 002\AAA_ADC.cvs" 9417000fsutil file createnew "X:\Root Dir\Dir 002\BBB_AAD.cvs" 6965000fsutil file createnew "X:\Root Dir\Dir 002\CCC_ADF.cvs" 6282000fsutil file createnew "X:\Root Dir\Dir 002\DDD_AGD.cvs" 13628000fsutil file createnew "X:\Root Dir\Dir 002\EEE_AXT.cvs" 6987000fsutil file createnew "X:\Root Dir\Dir 002\C00_AXT.cvs" 12587000fsutil file createnew "X:\Root Dir\Dir 003\AAA_ADA.cvs" 10995000fsutil file createnew "X:\Root Dir\Dir 003\BBB_AAP.cvs" 11602000fsutil file createnew "X:\Root Dir\Dir 003\CCC_ADE.cvs" 15938000fsutil file createnew "X:\Root Dir\Dir 003\DDD_AGA.cvs" 13556000fsutil file createnew "X:\Root Dir\Dir 003\EEE_ARR.cvs" 2152000fsutil file createnew "X:\Root Dir\Dir 003\D00_ARR.cvs" 2651000fsutil file createnew "X:\Root Dir\Dir 004\AAA_ACD.cvs"
2025-04-06AM X:\Root Dir\Dir 003\Sub Dir 004\AAA_DXA.cvsFile BBB13552000 9/4/2021 10:51:38 AM X:\Root Dir\Dir 004\BBB_ADP.cvsFile CCC15938000 9/4/2021 10:51:38 AM X:\Root Dir\Dir 003\CCC_ADE.cvsFile DDD18769000 9/4/2021 10:51:39 AM X:\Root Dir\Dir 001\Sub Dir 002\DDD_BDG.cvsFile EEE50111000 9/4/2021 10:51:41 AM X:\Root Dir\Dir 003\Sub Dir 003\EEE_DXT.cvs> dir /b /s /a-d|findstr \\[A-V][0][0]\_.*|find /v /c ""22Explaining what the bat is doing...Go to your destination / root folder, if not there, abort the bat file without executing any command below/next:cd/d "X:\Root Dir"||goto :eof The where command in the loop will list the layout files in the name AnyString_AnyString.cvs recursively (/r).for /f tokens^=* %%G in ('where /r .\ *_*.cvs /t' )do ...The set is saving the name (without the extension "%%~nG") of the file and on the same line bat calls function (label %:^)) passing the name (!_n!) and strings before (and with) the underline in the name as an argument.Ex: File in loop AAA_XYZ.cvs:Argument 1 = AAA_XYZArgument 2 = XYZEx: File in loop %%~GArgument 1 = !_n!Argument 2 = _!_n:*_=!Obs.: The substring in %2 argument is: AAA_XYZ == > AAA_XYZ == > XYZ ... set "_n=%%~nG" & call %:^) "!_n!" "_!_n:*_=!"If any arguments are passed, use them inside the first if(%1 == true) condition otherwise, if no arguments are passed, end bat, there are no more looped files to be handled by the function, so go to the end of the file, endingif not "%~1" == "" (do some in loop files) else (endlocal && goto :eOf)Once the processing takes place within the function, define _file with the filename given in argument %1set "_file=%~1" ... && (....We will make use of the strings that are returned in the loop by the execution of where, in space-delimited form (default) in occurrences 1 and in all after the 4th (4*), skipping one (skipˆ=1), where the skipped item is our largest file (intentionally ignored)...for /f skip^=1^tokens^=1^,4* %%I in (...:: %%I |--- Not In Use --| %%J %%K == *:: 1194000 9/4/2021 10:51:40 AM X:\Full\Path\To\AAA_DAC.cvs :: %%I size from file in loop :: %%J just to have all strings after %%J in %%K :: %%K all strings after %%J (including spaces if any):: %%I will be used as reference for sorting in sort /r :: %%J will not be used in any command:: %%K will be used to delete the file passing the fullpathUsing a substring to remove the characters in the name after the "", using the string passed by argument %2 (in !_file?;%2=!_*.cvs), this will get the reference to find the relevant parity file via the recursive where inside the loop, Finding all AAA* files, using part of the name in the first file passed (AAAA_*), in the second (BBB_*), third, etc..'where /r .\ !_file:%~2^=!_*.cvs /t^|sort /r'Transforms the output in reverse form, sorting
2025-04-20Available 7 files for D-Link DIR-825 Select Files Company D-Link Categories Networks Cards Model D-Link DIR-825 Description Wireless-N Quadband Home Router Firmware v2.01EU Operating System Firmware Version 2.01EU Size Driver 4.4MB File Name dir-825_fw_2.01eu.zip Observations DIR-825 Firmware Release NotesFirmware: 2.01EUHardware: B1Date: 2009/07/03Problems Resolved:1. Fixed schedule can't select data that include space char.2. Fixed schedule cannot over 24HR issue.3. ZIPB with DSL-320B.4. Fixed bug that MAC Filter Issue.Enhancements:1. Support Advanced DNS.2. Support Mac Safari can display autograph pictures.3. SharePort Module update for MAC and XP supporting.4. Graphical Authentication supportedKnown Issues:None----------------------------------------------------------------------------------------------------------------------------------Firmware: 2.00EUHardware: B1Date: 2009/03/17First Release Company D-Link Categories Networks Cards Model D-Link DIR-825 Description Wireless-N Quadband Home Router Initial firmware. Operating System Firmware Version 2.00 Size Driver 4.1MB File Name dir-825_fw_2-00_rev_b1.zip Observations DIR-825 Firmware Release NotesFirmware: 2.00EUHardware: B1Date: March 17, 20091. Initial firmware for DIR-825 B1 EU. Company D-Link Categories Networks Cards Model D-Link DIR-825 Description Wireless-N Quadband Home Router Quick Installation Guide Information Quick Installation Guide Operating System Manual Size Driver 1.7MB File Name dir-825_qig_1.00.pdf Observations Quick Installation GuideDIR-825Wireless N Quadband Home RouterPackage ContentsIf any of the items are missing, please contact your reseller.DIR-825Wireless NQuadband HomeRouterCD-ROM(D-LinkClick’n’Connect.Manual and Warranty)Ethernet (CAT5 UTP)CablePower AdapterDefault IP: 192.168.0.1Default Username: AdminDefault Password:Quick Installation1Remove the D-Link Clickand Connect CD. 2A. Be sure your Internetconnection is active. DONOT plug the router in yet.B. Insert the D-Link Click’nConnect CD into yourcomputer.Troubleshooting1. How do I configure my DIR-825 router without the CD, or check my WirelessNetwork Name (SSID) and Wireless Encryption Key?• Connect your PC to the router using an Ethernet
2025-04-21