User Tools

Site Tools


start:explorer

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
start:explorer [2016/12/09 14:07]
andre created
start:explorer [2018/01/18 10:17] (current)
andre [Copy path]
Line 1: Line 1:
-====== Search ​filters ​======+====== ​Windows Explorer File Search ====== 
 + 
 +===== Search filters ​=====
  
   * size (size:)   * size (size:)
Line 6: Line 8:
   * authors (authors:)   * authors (authors:)
  
-====== Search ribbon ​======+===== Search ribbon =====
  
   * switch between current folder or all subfolders   * switch between current folder or all subfolders
Line 13: Line 15:
   * advanced options can slow down search results   * advanced options can slow down search results
  
-====== Advanced query syntax ​======+===== Advanced query syntax =====
  
   * * e.g., *east   * * e.g., *east
Line 29: Line 31:
   * .. e.g., 1..10   * .. e.g., 1..10
     * finds all values from 1 through 10     * finds all values from 1 through 10
 +  * ? e.g., north??st
 +    * finds any string that starts with north and ends with st with two characters in between.
  
-====== Examples ​======+===== Examples =====
  
-  * *-*-*-15*.psd+  * ???-??-???-15?-?.psd
     * finds PSD files for team code 15     * finds PSD files for team code 15
   * 910*_m.jpg   * 910*_m.jpg
     * finds multi-shot JPG images for product code 910     * finds multi-shot JPG images for product code 910
  
-====== Copy path ======+===== Copy path =====
  
-  * Shift + right click on file+  * ''​Shift'' ​''​right click'' ​on one file or multiple files 
 +  * Copy as path
  
-====== PSD conversion folder locations ​======+===== PSD conversion folder locations =====
  
   * Tiffany, Ursula and Jason'​s desktops   * Tiffany, Ursula and Jason'​s desktops
Line 47: Line 52:
   * N:​\Entities\0-Schools\TEMP_SAVES\1-Working\Drop_here_for_PSD_to_JPG   * N:​\Entities\0-Schools\TEMP_SAVES\1-Working\Drop_here_for_PSD_to_JPG
   * Z:​\___DAM\Product_Images\Licensed_Items\Drop_here_for_PSD_to_JPG   * Z:​\___DAM\Product_Images\Licensed_Items\Drop_here_for_PSD_to_JPG
 +
 +====== Command Prompt File Search ======
 +
 +''​dir''​ command can be used to list the files from command prompt. This article explains the syntax for different usecases.
 +  * A simple ''​dir''​ command without any other arguments lists all the files/​subfolders that exist in the current folder.<​code>​dir</​code>​
 +  * Lists the subfolders/​files names in bare format.<​code>​dir /​b</​code>​This command prints the file names. No other file meta data like file modified time, file size etc are not displayed.
 +  * List the files in the current folder and also the ones in the subfolders recursively.<​code>​dir /​s</​code>​
 +
 +===== Using wild cards with dir =====
 +
 +''​dir''​ command accepts wild cards to display information only for the files that match the pattern specified. The below examples illustrate different use cases where we can use these wild cards
 +  * List files of certain type or based on extension\\ For example to list all jpeg files in the current folder, we can run the below command.<​code>​dir *.jpeg</​code>​To list all excel files<​code>​dir *.xls</​code>​We can even specify multiple extension in ''​dir''​ command to list files of any of the types. To list all files created with Office applications like Word, Excel, Powerpoint etc we can run below command.<​code>​dir *.docx *.xlsx *.pptx</​code>​
 +  * List files beginning/​ending with specific pattern\\ List all files in the current folder whose names begin with ‘Picture-‘<​code>​dir /S Picture-*</​code>​
 +
 +===== List file names based on type =====
 +
 +''​dir''​ command can list the file names and also the subfolders names. We can be selective and say that we want only names of the files to be listed or only the names of the subdirectories to be listed.
 +  * List only directories<​code>​dir /​A:​D</​code>​
 +  * List only files<​code>​dir /​A:​-D</​code>​
 +
 +===== Display files based on file attributes =====
 +
 +We can filter out which files should be listed in the ''​dir''​ command output based on read-only, system, hidden archive file attributes.
 +  * For example, to list read-only files in the current directory, the command is:<​code>​dir /​A:​R</​code>​
 +  * Similarly to display hidden files<​code>​dir /​A:​H</​code>​
 +  * For the opposite case of looking for files where an attribute is not set, we can append '​-'​ to the attribute code. For example, to print the file names without archive attribute set, we can use the below command.<​code>​dir /​A:​-A</​code>​
 +  * Exclude Read-only files from the listing.<​code>​dir /​A:​-R</​code>​
 +  * Exclude hidden files from listing.<​code>​dir /​A:​-H</​code>​
 +  * Exclude system files from listing.<​code>​dir /​A:​-S</​code>​
 +
 +===== Print metadata of files using dir command =====
 +
 +  * Find out who owns a file<​code>​dir /​Q</​code>​Example:<​code>​c:​\>​dir /Q 1.txt
 +05/​03/​2015 ​ 01:12 AM           ​151,​906 BUILTIN\Administrators 1.txt</​code>​The above result of ''​dir''​ indicates that file 1.txt is owned by Administrators group.
 +  * Get created time of a file<​code>​dir /​TC</​code>​
 +  * Find last accessed time of a file<​code>​dir /​TA</​code>​
 +  * Find last modified time of a file<​code>​dir /​TW</​code>​
start/explorer.1481321223.txt.gz · Last modified: 2016/12/09 14:07 by andre