You are reading a single comment by @Emyr and its replies. Click here to read the full conversation.
  • I don't know what Pentaho PDI is, but it might not be happy with command prompt stuff. I sometimes have trouble with accessing networked locations from the command line (but that's in Linux, not Windows).

    Edit: dir sounds like the right command though unless you want something more complicated with regex etc.:

    You can use wildcard characters (* or?), to represent one or more characters of a file name and to display a subset of files or subdirectories.

    Asterisk (*): Use the asterisk as a substitute for any string of characters, for example:
    dir *.txt lists all files in the current directory with extensions that begin with .txt, such as .txt, .txt1, .txt_old.

    dir read*.txt lists all files in the current directory that begin with "read" and with extensions that begin with .txt, such as .txt, .txt1, or .txt_old.

    dir read. lists all files in the current directory that begin with "read" with any extension.
    The asterisk wildcard always uses short file name mapping, so you might get unexpected results.

    Question mark (?): Use the question mark as a substitute for a single character in a name. For example, typing dir read???.txt lists any files in the current directory with the .txt extension that begin with "read" and are followed by up to three characters. This includes Read.txt, Read1.txt, Read12.txt, Read123.txt, and Readme1.txt, but not Readme12.txt.

About

Avatar for Emyr @Emyr started