> ----------- start ----------- > my $bff = Win32::FFI::BrowseForFolder->new( > -initial => CSIDL_NETWORK, > -folder => "\\\\client\d$", > -title => "Select Profile Template", > -regexp =>'^(?i)[cd]:', > ); > my $dir = $bff->show; > ----------- end ----------- > > What am I doing wrong? Or is there a different module which > can be used?
Is this a typo in the posting or in the code ... you thought of doubling the \\ into \\\\, but the \d$ has to become \\d$ as well.