Append Counter for uploadfiles C#
up vote
0
down vote
favorite
I need to append counter number to files while saving the uploaded files, for example client upload 2 files imagex.jpg, imagey.jpg
I want to save them to server as Client_UPI_1.jpg, Client_UPI_2.jpg
Below is the code i am using
public class CustomMultipartFormDataStreamProvider : MultipartFormDataStreamProvider
string _filename = null;
public CustomMultipartFormDataStreamProvider(string path,string filename) : base(path) _filename = filename;
public override Stream GetStream(HttpContent parent, HttpContentHeaders headers)
Logger.LogMessage(LogType.Debug, "GetStream Start");
var fileExtension = Path.GetExtension(headers.ContentDisposition.FileName.Replace(""", ""));
Logger.LogMessage(LogType.Debug, "GetStream complete");
return base.GetStream(parent, headers);
public override string GetLocalFileName(HttpContentHeaders headers)
ContentDispositionHeaderValue disposition = headers.ContentDisposition;
string filename = (disposition != null && disposition.FileName != null) ? disposition.FileName : String.Empty;
string extension = Path.GetExtension(filename.Replace(""", ""));
return String.Format(CultureInfo.InvariantCulture, "0", (_filename));
Prepare CustomMultipartFormDataStreamProvider in which our multipart form data will be loaded
string fileUploadPath = Path.Combine(ConfigHelper.FILE_UPLOAD_LOCATION);
int counter = 0;
string filename = "Client_UPI_" + counter + ".jpg"; // NEED TO UPDATE THE COUNTER SO THAT FILE NAME A SEQUENCE NUMBER
CustomMultipartFormDataStreamProvider provider = new CustomMultipartFormDataStreamProvider(fileUploadPath,filename);
var task = request.Content.ReadAsMultipartAsync(provider).
ContinueWith<HttpResponseMessage>(o =>
//some logic
);
return task;
Currently all my filenames save as "Client_UPI_0.jpg", I want to update the counter number based on the sequence of the files, like file1 will be "Client_UPI_1.jpg" and file2 will be "Client_UPI_2.jpg" so on
c# asp.net asyncfileupload
add a comment |
up vote
0
down vote
favorite
I need to append counter number to files while saving the uploaded files, for example client upload 2 files imagex.jpg, imagey.jpg
I want to save them to server as Client_UPI_1.jpg, Client_UPI_2.jpg
Below is the code i am using
public class CustomMultipartFormDataStreamProvider : MultipartFormDataStreamProvider
string _filename = null;
public CustomMultipartFormDataStreamProvider(string path,string filename) : base(path) _filename = filename;
public override Stream GetStream(HttpContent parent, HttpContentHeaders headers)
Logger.LogMessage(LogType.Debug, "GetStream Start");
var fileExtension = Path.GetExtension(headers.ContentDisposition.FileName.Replace(""", ""));
Logger.LogMessage(LogType.Debug, "GetStream complete");
return base.GetStream(parent, headers);
public override string GetLocalFileName(HttpContentHeaders headers)
ContentDispositionHeaderValue disposition = headers.ContentDisposition;
string filename = (disposition != null && disposition.FileName != null) ? disposition.FileName : String.Empty;
string extension = Path.GetExtension(filename.Replace(""", ""));
return String.Format(CultureInfo.InvariantCulture, "0", (_filename));
Prepare CustomMultipartFormDataStreamProvider in which our multipart form data will be loaded
string fileUploadPath = Path.Combine(ConfigHelper.FILE_UPLOAD_LOCATION);
int counter = 0;
string filename = "Client_UPI_" + counter + ".jpg"; // NEED TO UPDATE THE COUNTER SO THAT FILE NAME A SEQUENCE NUMBER
CustomMultipartFormDataStreamProvider provider = new CustomMultipartFormDataStreamProvider(fileUploadPath,filename);
var task = request.Content.ReadAsMultipartAsync(provider).
ContinueWith<HttpResponseMessage>(o =>
//some logic
);
return task;
Currently all my filenames save as "Client_UPI_0.jpg", I want to update the counter number based on the sequence of the files, like file1 will be "Client_UPI_1.jpg" and file2 will be "Client_UPI_2.jpg" so on
c# asp.net asyncfileupload
3
What is your question? What's wrong with the code you have? Any errors? Where?
– Symon
Nov 9 at 19:50
As @Symon pointed out, you need to provide more details to your post so others can understand better and provide you with solutions.
– aman
Nov 9 at 20:11
Added more details thanks
– user8624282
Nov 10 at 3:38
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I need to append counter number to files while saving the uploaded files, for example client upload 2 files imagex.jpg, imagey.jpg
I want to save them to server as Client_UPI_1.jpg, Client_UPI_2.jpg
Below is the code i am using
public class CustomMultipartFormDataStreamProvider : MultipartFormDataStreamProvider
string _filename = null;
public CustomMultipartFormDataStreamProvider(string path,string filename) : base(path) _filename = filename;
public override Stream GetStream(HttpContent parent, HttpContentHeaders headers)
Logger.LogMessage(LogType.Debug, "GetStream Start");
var fileExtension = Path.GetExtension(headers.ContentDisposition.FileName.Replace(""", ""));
Logger.LogMessage(LogType.Debug, "GetStream complete");
return base.GetStream(parent, headers);
public override string GetLocalFileName(HttpContentHeaders headers)
ContentDispositionHeaderValue disposition = headers.ContentDisposition;
string filename = (disposition != null && disposition.FileName != null) ? disposition.FileName : String.Empty;
string extension = Path.GetExtension(filename.Replace(""", ""));
return String.Format(CultureInfo.InvariantCulture, "0", (_filename));
Prepare CustomMultipartFormDataStreamProvider in which our multipart form data will be loaded
string fileUploadPath = Path.Combine(ConfigHelper.FILE_UPLOAD_LOCATION);
int counter = 0;
string filename = "Client_UPI_" + counter + ".jpg"; // NEED TO UPDATE THE COUNTER SO THAT FILE NAME A SEQUENCE NUMBER
CustomMultipartFormDataStreamProvider provider = new CustomMultipartFormDataStreamProvider(fileUploadPath,filename);
var task = request.Content.ReadAsMultipartAsync(provider).
ContinueWith<HttpResponseMessage>(o =>
//some logic
);
return task;
Currently all my filenames save as "Client_UPI_0.jpg", I want to update the counter number based on the sequence of the files, like file1 will be "Client_UPI_1.jpg" and file2 will be "Client_UPI_2.jpg" so on
c# asp.net asyncfileupload
I need to append counter number to files while saving the uploaded files, for example client upload 2 files imagex.jpg, imagey.jpg
I want to save them to server as Client_UPI_1.jpg, Client_UPI_2.jpg
Below is the code i am using
public class CustomMultipartFormDataStreamProvider : MultipartFormDataStreamProvider
string _filename = null;
public CustomMultipartFormDataStreamProvider(string path,string filename) : base(path) _filename = filename;
public override Stream GetStream(HttpContent parent, HttpContentHeaders headers)
Logger.LogMessage(LogType.Debug, "GetStream Start");
var fileExtension = Path.GetExtension(headers.ContentDisposition.FileName.Replace(""", ""));
Logger.LogMessage(LogType.Debug, "GetStream complete");
return base.GetStream(parent, headers);
public override string GetLocalFileName(HttpContentHeaders headers)
ContentDispositionHeaderValue disposition = headers.ContentDisposition;
string filename = (disposition != null && disposition.FileName != null) ? disposition.FileName : String.Empty;
string extension = Path.GetExtension(filename.Replace(""", ""));
return String.Format(CultureInfo.InvariantCulture, "0", (_filename));
Prepare CustomMultipartFormDataStreamProvider in which our multipart form data will be loaded
string fileUploadPath = Path.Combine(ConfigHelper.FILE_UPLOAD_LOCATION);
int counter = 0;
string filename = "Client_UPI_" + counter + ".jpg"; // NEED TO UPDATE THE COUNTER SO THAT FILE NAME A SEQUENCE NUMBER
CustomMultipartFormDataStreamProvider provider = new CustomMultipartFormDataStreamProvider(fileUploadPath,filename);
var task = request.Content.ReadAsMultipartAsync(provider).
ContinueWith<HttpResponseMessage>(o =>
//some logic
);
return task;
Currently all my filenames save as "Client_UPI_0.jpg", I want to update the counter number based on the sequence of the files, like file1 will be "Client_UPI_1.jpg" and file2 will be "Client_UPI_2.jpg" so on
c# asp.net asyncfileupload
c# asp.net asyncfileupload
edited Nov 10 at 3:37
asked Nov 9 at 19:21
user8624282
617
617
3
What is your question? What's wrong with the code you have? Any errors? Where?
– Symon
Nov 9 at 19:50
As @Symon pointed out, you need to provide more details to your post so others can understand better and provide you with solutions.
– aman
Nov 9 at 20:11
Added more details thanks
– user8624282
Nov 10 at 3:38
add a comment |
3
What is your question? What's wrong with the code you have? Any errors? Where?
– Symon
Nov 9 at 19:50
As @Symon pointed out, you need to provide more details to your post so others can understand better and provide you with solutions.
– aman
Nov 9 at 20:11
Added more details thanks
– user8624282
Nov 10 at 3:38
3
3
What is your question? What's wrong with the code you have? Any errors? Where?
– Symon
Nov 9 at 19:50
What is your question? What's wrong with the code you have? Any errors? Where?
– Symon
Nov 9 at 19:50
As @Symon pointed out, you need to provide more details to your post so others can understand better and provide you with solutions.
– aman
Nov 9 at 20:11
As @Symon pointed out, you need to provide more details to your post so others can understand better and provide you with solutions.
– aman
Nov 9 at 20:11
Added more details thanks
– user8624282
Nov 10 at 3:38
Added more details thanks
– user8624282
Nov 10 at 3:38
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53232072%2fappend-counter-for-uploadfiles-c-sharp%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
3
What is your question? What's wrong with the code you have? Any errors? Where?
– Symon
Nov 9 at 19:50
As @Symon pointed out, you need to provide more details to your post so others can understand better and provide you with solutions.
– aman
Nov 9 at 20:11
Added more details thanks
– user8624282
Nov 10 at 3:38