使用 c#,我正在从用户在手机上输入的 url 下载文件。当它把文件写入IsolatedStorage 时,它向文件写入了太多字节,因此,用于打开这些文件的程序将无法打开。
当我调试时,位大小是 451,258 字节,但是当文件从 IsolatedStorage 中导出时,它是 454,656 字节。它正在用空格填充剩余的空间。无论如何调整这个文件大小?最后剪掉多余的空间并保存?
原谅我的无知,因为我是 C# 和 WP7 开发的新手。我非常感谢您的帮助。
这是我的代码:
public void readCompleteCallback(Object sender, OpenReadCompletedEventArgs e)
{
if (e.Error == null)
{
try
{
//string fileName = txtUrl.Text.Substring(txtUrl.Text.LastIndexOf("/") + 1).Trim();
string fileName = "DownloadedNZB.nzb";
bool isSpaceAvailable = IsSpaceIsAvailable(e.Result.Length);
if (isSpaceAvailable)
{
// Save mp3 to Isolated Storage
using (var isfs = new IsolatedStorageFileStream(fileName,
FileMode.CreateNew,
IsolatedStorageFile.GetUserStoreForApplication()))
{
long fileLen = e.Result.Length;
byte[] b = new byte[fileLen];
e.Result.Read(b, 0, b.Length);
isfs.Write(b, 0, b.Length);
isfs.Flush();
isfs.Close();
MessageBox.Show("File downloaded successfully");
}
}
else
{
MessageBox.Show("Not enough to save space available to download the file");
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
else
{
MessageBox.Show(e.Error.Message);
}
}