Software by tag 'dos'

How to create a list of all files and folders under a path

Posted by Dickey on Feb 29th, 08 | Filed under Application, How To, Tips | 3 Comments

Sometimes, you may want to create a list of files/folders under a certain path, but you need some DOS skills in order to do so. If you don’t want to type those commands, you can try a free tool JR Directory Printer, which will help you to create a text files that contains list of files and folders under a path.

There are a lot of options for you to choose from. Screenshots below show the General and Display settings:

JR Directory Printer_1

JR Directory Printer_2

As you can see, the General page allow you to choose your folder path, recurse sub-directories or not, lowercase and dos style filename. If you choose recurse sub-directories, you will get a very long list. The Display tab will let you choose to display the properties of the file, such as size, date time, and attributes.

This application is very useful especially when you want to create a list for your mp3 or movies. You can create a list for your files/folders before burn them into CD/DVD so that you can easily know the contents of the files at future, without browsing them.

JR Directory Printer website | download

download from MediaFire

How to hide important information in an image file?

Posted by Dickey on Feb 6th, 08 | Filed under Tips, Tutorial | 6 Comments

This tutorial will discuss about how to hide a text file in a jpeg/bitmap image file. It can be done without any other application.

Sometimes, we save our email-account and password inside a text file, but we scare other people get the file and then access our email. So, we always thinking method to protect our own password. We may use some password manager to save all the password with a master password. But, what happen is we lost the master password or other people manage to hack the master password? So, why not we hide the important information inside an image file?

How it work?

  1. First of all, you need to save your informations in a text file and then prepare an image (either jpeg or bitmap format). In this example, i will user secret.txt as my text file and photo.jpg as my image file.
  2. Put the text document and image together. Here, i put them in my C: drive.
  3. Go to Run, the type cmd. This will bring you to the command prompt.
  4. Now, type cd\ to go to the root. In this case, the root is C:. You can proceed to the next step if you save your image and text file in C: drive. But, if you save them in other folder, such as c:\testing, you need to type cd\testing to go into the folder.
  5. Now, you reach the most important part. Type copy photo.jpg/B+secret.txt/B output.jpg. The image file need to come first. If you put your text file before image file, the output image file maybe cannot open properly. Beside this, the input image and output image must be same format (either both in jpeg or both in bitmap).
  6. Now, try to open the output.jpg using any image viewer. Looks no different with photo.jpg right?
  7. Now, try to open output.jpg using notepad, you will found the secret.txt contents inside.

Now, your informations are safe enough, because you are the only person which know which image contains the informations. Even they can access the file, they won’t open an image with notepad, right?

Advice: It is better to choose smaller size image, else you need longer time to open it using notepad.