Help, anyone...
-
Help, anyone...I need to know the syntax to search for all files that start with any 10 characters and have a DLL extension. I know the *.dll but what do I put for the 10 characters????????? Thanks in advance
Hi, ? - Any single char * - Group of chars sample 1; ??????????.dll --------> Display a file with 10 chars and DLL extension. vs. *.dll -----------------> any file with DLL extension. sample 2; A?B*.dll --------------> any filename begin with letter "A" with 3rd character equal to letter "B" and with DLL extension result: ABBADASDFSDFSDFSAD.dll AABDDD345345dfgdfgdf.dll ACB.dll ABB.dll AAB.dll Mark
-
Help, anyone...I need to know the syntax to search for all files that start with any 10 characters and have a DLL extension. I know the *.dll but what do I put for the 10 characters????????? Thanks in advance
-
Help, anyone...I need to know the syntax to search for all files that start with any 10 characters and have a DLL extension. I know the *.dll but what do I put for the 10 characters????????? Thanks in advance
Hi, try to research about wildcards. mark