It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
any idea how can I do this I dnt want to manage bytes[] of each files of folder.
Thanx
The question makes no sense. Folders do not have any binary content, only files do. You will need to enumerate all files in the folder and open them separately.
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
How to walk a directory application project ASP.NET MVC 3 ?
For example: I must find one file in derectory MyApp.WebUI/controls
You could use the Directory.EnumerateFiles method. Or if you already know the name of the file you could directly access this file. In order to calculate the absolute path to this directory/file you should use the Server.MapPath method:
var location = Server.MapPath("~/MyApp.WebUI/controls");
var files = Directory.EnumerateFiles(location);
...
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have a set of JPEG images. I want to create wmv files from jpeg images with C#. How can i do that?
Thanks
The easy way will be to use a third party library like Bytescout Image To Video SDK.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I've made a program using C# and I want know how to associate file which output to open by using this program.
this program made files with an extension .fct I want this files with that extension open in my program when it double clicked
You might want to look into this: http://mel-green.com/2009/04/c-set-file-type-association/
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Scrape Data in C# from images
Your best bet may be to buy an OCR library. There seem to a variety of them out there.
http://www.componentsource.com/features/scanning-ocr/net-class/index.html
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
is there any working/reliable open source TCP/IP Server App in C#?
You don't have very specific requirements, but there is a whole bunch at Codeplex(search:server+socket), just pick one that suits your need there.