Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public sealed partial class FileSystemProvider : NavigationCmdletProvider,
// 4MB gives the best results without spiking the resources on the remote connection for file transfers between pssessions.
// NOTE: The script used to copy file data from session (PSCopyFromSessionHelper) has a
// maximum fragment size value for security. If FILETRANSFERSIZE changes make sure the
// copy script will accomodate the new value.
// copy script will accommodate the new value.
private const int FILETRANSFERSIZE = 4 * 1024 * 1024;

// The name of the key in an exception's Data dictionary when attempting
Expand Down Expand Up @@ -4429,7 +4429,7 @@ private bool PerformCopyFileFromRemoteSession(string sourceFileFullName, FileInf
}
}

// To accomodate empty files
// To accommodate empty files
string content = string.Empty;
if (op["b64Fragment"] != null)
{
Expand Down