我正在尝试使用文件流将zip文件复制到远程服务器位置,以下是我的Web方法:
[WebMethod]
public void SavePackage(string args = "{}")
{
FileStream fs = new FileStream(@"c:tempabc.zip", FileMode.Open, FileAccess.Read);
byte[] byteData = new byte[fs.Length];
fs.Read(byteData, 0, System.Convert.ToInt32(fs.Length));
}
但我不知道如何将字节数据作为 zip 写入目标。
在我使用File.Copy
方法之前,但这不适用于远程服务器。
using (var outStream = new FileStream(somePath, FileMode.Write))
{
using (var inStream = new FileStream(localPath, FileMode.Read))
{
inStream.CopyTo(outStream);
}
}
System.IO.File.Copy 是可以的,但前提是你的电脑有权访问目的地。
最方便的验证方法之一是找到网络共享云端硬盘,然后将文件复制到其中。 即
File.Copy(@"c:tempMyFile.txt", @"\serverfolderMyfile.txt", true);
您可以使用BinaryWriter。请参阅此代码:首先添加此命名空间:
使用 System.IO
var bytes = File.ReadAllBytes("YOUR_SOURCE_PATH");
BinaryWriter writer = new BinaryWriter(File.OpenWrite("DESTINATION_PATH.zip"));
writer.Write(bytes);
考虑一下,当您将文件数据读取为字节数组时,无论您的文件扩展名如何。
在许多博客中搜索后,我发现我们需要某种与客户端计算机交互的客户端控件。因此,我使用共享路径将该文件上传到目标,而不是在我的情况下"c:\temp\abc.zip"中的某个随机路径。
下面是我完成该任务的网络方法。
[WebMethod]
public string SavePackage(string args = "{}")
{
try
{
// here i am accepting json args as parameter
string sourcePath = string.Empty, type = string.Empty, category = string.Empty, description = string.Empty, additionalComments = string.Empty;
var jsonargs = (JObject)JsonConvert.DeserializeObject(args);
if (jsonargs.Count == 0)
{
return "{'message':'No parameters', 'status':'404'}";
}
foreach (var item in jsonargs)
{
sourcePath = (item.Key.ToLower() != "sourcepath" || !string.IsNullOrEmpty(sourcePath)) ? sourcePath : item.Value.ToString().Replace(@"""", "").Replace(@"\", @""); // shared path
type = (item.Key.ToLower() != "type" || !string.IsNullOrEmpty(type)) ? type : item.Value.ToString().Replace(@"""", "");
category = (item.Key.ToLower() != "category" || !string.IsNullOrEmpty(category)) ? category : item.Value.ToString().Replace(@"""", "");
description = (item.Key.ToLower() != "description" || !string.IsNullOrEmpty(description)) ? description : item.Value.ToString().Replace(@"""", "");
additionalComments = (item.Key.ToLower() != "additionalcomments" || !string.IsNullOrEmpty(additionalComments)) ? additionalComments : item.Value.ToString().Replace(@"""", "");
}
if (!Path.GetExtension(sourcePath).Equals(".zip"))
{
return "{'message':'File source path is not in a zip format', 'status':'404'}";
}
var filename = sourcePath.Remove(0, sourcePath.LastIndexOf("\", StringComparison.Ordinal) + 1);
var tempDir = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString());
Directory.CreateDirectory(tempDir);
var destPath = Path.Combine(tempDir, filename);
File.Copy(sourcePath, destPath, true);
if (!File.Exists(destPath))
{
return "{'message':'File not copied', 'status':'404'}";
}
return "{'message':'OK', 'status':'200'}";
}
catch (Exception ex)
{
return "{'message':'error', 'status':'404'}";
}
}