E
Eddy RH
Guest
I have the following code where I try to search and display the pdf files of a specific path
var files = Directory.EnumerateFiles(@"\\192.168.1.216\UploadFileMobilePDF\" + transfer.IdTransfer, "*.pdf", SearchOption.AllDirectories);
foreach (var file in files)
{
System.Diagnostics.Process.Start(file);
}
but silverlight does not let me access that route, I want to know how to do the same function, but in silverlight, search and display the pdf files
Edgar Rojas H.
Continue reading...
var files = Directory.EnumerateFiles(@"\\192.168.1.216\UploadFileMobilePDF\" + transfer.IdTransfer, "*.pdf", SearchOption.AllDirectories);
foreach (var file in files)
{
System.Diagnostics.Process.Start(file);
}
but silverlight does not let me access that route, I want to know how to do the same function, but in silverlight, search and display the pdf files
Edgar Rojas H.
Continue reading...