如何通过REST服务发送本地文件?

时间:2015-03-03 12:09:07

标签: c# wcf rest

我正在使用WCF和C#(VS 2010)开发REST Web服务。我想开发一个这样的操作:

doSomethingWithAFile(String filePath)

所以它会像这样调用:

GET http://my.web.service/endpoint?filePath={filePath}

filePath是客户端(不在服务器中)的文件路径。因此,在调用时,该操作必须将路径指向的文件发送到服务器,以便服务器可以对文件中包含的数据执行某些操作。

我怎样才能做到这一点?

编辑:正如我在评论中所述,我会在客户端设置一个共享文件夹,所以我发送路径,服务器读取文件夹中的文件。

1 个答案:

答案 0 :(得分:0)

在您的服务器上,您必须拥有一个接受字符串输入的方法的服务,您可以使用来自客户端应用程序的文件路径调用该字符串输入。 然后,您可以通过常规文件IO方法在服务器上读取/复制/从该位置获取文件。

您可以在下面找到如何执行此操作的示例。 ServerPleaseFetchThisFile的定义自然取决于这种Web服务,WCF或IIS Web服务或自制Web服务。

public bool ServerPleaseFetchThisFile(string targetPath)
{
  // targetPath should enter from the client in format of \\Hostname\Path\to\the\file.txt
  return DoSomethingWithAFile(targetPath);
}

private bool DoSomethingWithAFile(string targetFile)
{
  bool success = false;

  if (string.IsNullOrWhiteSpace(targetFile))
  {
    throw new ArgumentNullException("targetFile", "The supplied target file is not a valid input.");
  }

  if (!File.Exists(targetFile))
  {
    throw new ArgumentNullException("targetFile", "The supplied target file is not a valid file location.");
  }

  try
  {
    using (FileStream targetStream = new FileStream(targetFile, FileMode.Open, FileAccess.Read))
    {
      // Do something with targetStream
      success = true;
    }
  }
  catch (SecurityException se)
  {
    throw new Exception("Security Exception!", se);
    // Do something due to indicate Security Exception to the file
    // success = false;
  }
  catch (UnauthorizedAccessException uae)
  {
    throw new Exception("Unathorized Access!", uae);
    // Do something due to indicate Unauthorized Access to the file
    // success = false;
  }

  return success;
}