Double Commander in Windows 10: Add Commas to File Size Numbers
Double Commander is a popular open-source file manager that offers a wide range of features, including customizable options for displaying file sizes. By default, Double Commander displays file sizes as a single number, such as "123456789". However, many users prefer to see file sizes with commas for better readability, like "123,456,789". This article will guide you through the process of enabling this feature in Double Commander for Windows 10.
Enabling Comma Separators in Double Commander
To add commas to file size numbers in Double Commander for Windows 10, follow these steps:
- Launch Double Commander on your Windows 10 system.
- Click on the Configuration menu, then select Options.
- In the Options window, navigate to the General tab.
- Scroll down to the File List section.
- Find the File size format option and change it to Human readable (commas).
- Click OK to save your changes and close the Options window.
Understanding Human-Readable File Sizes
The Human readable (commas) option in Double Commander's File List section converts file sizes into a more user-friendly format. For example, instead of displaying a file size as "123456789 bytes", it will be displayed as "117.9 MB" (megabytes). The addition of commas further enhances readability, making it easier to distinguish between different file sizes.
Key Concepts
-
File size format: Double Commander offers several options for displaying file sizes, including raw bytes, human-readable format, and human-readable format with commas.
-
Customization: Double Commander allows users to customize various aspects of the file manager, including file size display format, to suit their preferences.
Code Block
Here's an example of how to enable the Human readable (commas) option in Double Commander's File List section using code:
// Launch Double Commander
run("dc");
// Access the Configuration menu
send("{F10}");
// Select Options
send("o");
// Navigate to the General tab
send("{TAB 3}");
// Find the File size format option
send("{DOWN 12}");
// Change it to Human readable (commas)
send("{RIGHT}");
// Save changes and close the Options window
send("{ALT o}");
In this article, we have discussed how to enable the Human readable (commas) option in Double Commander for Windows 10 to display file sizes with commas for better readability. By following the steps outlined above, users can customize Double Commander to suit their preferences and enhance their file management experience.
References
-
Double Commander Options: https://dcommander.com/manual/#options
-
Double Commander Configuration: https://dcommander.com/manual/#configuration