1
vote
1answer
47 views

Uploading files: FileUpload.SaveAs or manually writing FileUpload.FileBytes

Using the FileUpload control, please explain the difference between the following two methods of uploading file: 1. Using the FileUpload.SaveAs() method: fileUploadControl.SaveAs(path) 2. Writing ...
1
vote
2answers
52 views

Downloading and reading the same file by many processes w/ C# 4.0

I need to be able to read a file which should be saved locally, and if the file doesn't exist yet I need to download it. Here's a simplified version of what I'm trying to accomplish: // See if the ...
0
votes
2answers
99 views

Saving Files in asp.net server

i have built an admin panel where admin uploads images to server(they are actualy images of products) at first i named them acording to my ProductObject.ID so when admin uploaded image to product ...
0
votes
1answer
88 views

During file Extraction while loop never Ends

I am Extracting Document and Store all that data in txt file format. For Extraction I am using http://www.codeproject.com/Articles/31944/Implementing-a-TextReader-to-extract-various-files this ...
0
votes
1answer
54 views

Open File as Authenticated User

How can I open a file (System.IO.FileStream) as the user running the browser (User.Identity.Name) rather than the local network account on the server? Request: If applicable, edit post with proper ...
0
votes
2answers
171 views

.NET MVC Access denied when trying to create Directory

I am trying to create a Directory in .NET using Directory.CreateDirectory, I followed the directions here to give access permission but I am still getting an UnauthorizedAccessException. Does anyone ...
0
votes
1answer
24 views

How to get the Web Page names of Website in Dropdownlist and Contents in RichTextBox in asp.net?

I want to display all the webpage names (.aspx) which resides in application root directory and display it in DropdownList. According to selection of page the contents of .aspx page must be shown in ...
1
vote
1answer
112 views

File.Delete deleting both the original and converted file

This is my API method which uploads the .caf file to the server, converts into .mp3 and deletes the .caf file. But the problem is that both the original file and the converted file are being deleted ...
1
vote
1answer
250 views

Asynchronous write error log file

I am creating a public facing web site and one of the requirement is to write all the errors/warning in a log file. I have try catch block everywhere and also I can catch the errors in the ...
2
votes
2answers
191 views

Why are the values in the array retained in the while loop? (VB.NET)

If I place a breakpoint at the line currentrow = MyParser.ReadFields() , currentrow still contains the values of the previous line parsed from the file. After currentrow = MyParser.ReadFields() ...
0
votes
2answers
58 views

How To Rectrict Access to the Files in File System(ASP.NET Web application directory)?

am working on a ASP.Net Web Applications. In that user can upload documents and they can view the same when they required. These uploads kept in the file system(path:- WebApp/Uploads/Docs). This will ...
0
votes
1answer
275 views

How to synchronize writing to file in ASP.Net global.asax?

I am writing to a file, that is created for each date of the year, through code below. This code runs whenever, an unhandled exception occurs in an ASP.Net app. My problem is when many users are using ...
0
votes
1answer
44 views

Can't create a file when users generate at a same time

I have a code to create an xml file on a server directory, this code is working like a charm until users process this code at A SAME TIME. the user who has a milliseconds faster will success generate ...
1
vote
0answers
300 views

unable to Read file from network path in threads

I am unable to Read file from network path when i surround my code in threads. code work fine without threads. if i use threads and use local drive path (same system) then it work fine in threads as ...
1
vote
1answer
75 views

Using a Lock Within Catch for Exception in order to write to Physical log file

My team is working on a C# ASP.NET Web application. I decided to handle errors by writing to an error log file. The log.Error method that I wrote would log to a physical log file in an error ...
0
votes
1answer
524 views

Web Application not able to Delete files for Read/Write Enabled Folders in ASP.NET

When I'm trying to delete the images uploaded by me via website named "SampleApplication" I can see the following error shown in Stack Trace The process cannot access the file ...
0
votes
2answers
206 views

show files from folder help for asp.net

I have a script that shows some files from a folder. code behind Sub fileinfo() Dim objDI As New System.IO.DirectoryInfo(Server.MapPath("upload/files/")) Dim allFile As New ArrayList() ...
0
votes
1answer
210 views

Does Request.PhysicalApplicationPath works on Shared Hosting?

Does anyone know whether Request.PhysicalApplicationPath works on shared hosting?? I need it because I'm saving user uploaded images to folder which is placed in my running web application. Hierarchy ...
1
vote
0answers
137 views

What approach is efficient to read large file and display data in html page

I have a web server which will read large xml files (several megs) containing data to display. The server could be reading several files at the same time (different page requests) so I am looking for ...
-1
votes
4answers
161 views

C#: Best optimized way for reading contents of a JS and CSS files

Using C#, Framework 2.0 What is the best optimized way for reading contents of a JS and CSS files? Note that the contents needs to write out at the same time EDIT: To be more clear, while ...
0
votes
2answers
191 views

To delete a desk top file in asp.net c#

i want a solution for this , i want to delete a file which is residing in my desk top using asp.net c# , i used below code: try { FileInfo TheFile = new FileInfo(MapPath(".") + "\\" + ...
0
votes
2answers
168 views

How do I read css file relatively from my master page?

In my ASP.NET project. I put my css file in \App_Themes\Default\theme.css This is right under my project folder with all the aspx, master, web.config, etc. How do I read that into a string using ...
0
votes
1answer
144 views

File I/O Not functioning in ASP .Net C# Worker Threads

Well...I feel absolutely stupid. Here's why: I have been using some library functions I wrote 2 years ago. Buried a few levels deep, I was using these functions to help build the path I wanted: ...
0
votes
1answer
175 views

Issue in Reading/Writing files through P/Invoke in ASP.NET bin folder

I have been trying to write and read files through P/Invoke via my ASP.NET website. I am facing a problem as to where the files are written/read when doing this through dlls in a website. I have tried ...
0
votes
2answers
594 views

Creating a hyperlink to a physical path on the local PC, to files not part of the web site

I have some files in a folder on the harddrive, like C:\ExtraContent\ that has some PDF files. This folder is not part of the website. I was able to successfully upload a PDF to this folder using ...
0
votes
1answer
275 views

changing directory access using ICACLS.exe at runtime

I have the following syntax to change the directory access permission of the LOGO folder in the web application ICACLS D:\Workspace\SampleProject\LOGO /grant "IIS_IUSRS":(OI)(CI)F. This works fine ...
0
votes
2answers
207 views

How to check file process in visual studio in c# language?

I am working on pdf creator in Asp.net with c#. In my code it created a pdf file and after that i use flush, close and dispost the streamwriter and in the nest function i am opening the same file in ...
2
votes
2answers
1k views

Exporting Excel file to PDF - getting stuck trying to close Excel file

I have a function that takes a url to an Excel file, and then exports it as a pdf: public static void ExportFromExcel(string url) { // Create COM Objects Application excelApplication = new ...
0
votes
1answer
671 views

Access to file is denied exception with asp.net impersonation

I am trying to access the files with following c# code, but when i try to execute the code i am encountered with exception saying access to path @"\MAHESH-PC\D$\temp\CloudURL.txt is denied . ...
1
vote
2answers
2k views

Error: The process cannot access the file because it is being used by another process

I'm working in ASP.NET application and reading a pipe delimited text file. After reading the file when I try to rename the file (by using "Move" function) I get the error: "The process cannot access ...
0
votes
2answers
808 views

Locking a XML file during reading and writing in ASP.NET

I have quite a bit of users accessing the same XML file. Is the code below the best way to access the file? If not, what is preferred? I don't want the user to get a "file in use error" or ...
-3
votes
3answers
3k views

How to get file names of folder in c#

I want the file names of a particular folder in c#. I use Following code string[] filePaths = Directory.GetFiles(@"c:\MyDir\"); I do not want to use getfiles function because it locked by ...
1
vote
1answer
291 views

Extending ObjectCache to create a file-based cache alternative

We are working on an ASP.Net MVC/Jquery mobile project for a chain of Australian holiday parks. The bulk of park related data is stored in a SQL database. One of the sections currently in ...
3
votes
2answers
311 views

How to know if the uploaded file has been changed?

If the user uploads some file to my server and I want to make sure that the file hasn't been changed from the last time the user uploaded it, how can I get this information? I have a log table with ...
2
votes
1answer
511 views

Read file without exclusive lock

What is the best way to read image when simultaneous requests try to access the same image file? Basically I have created tiff viewer in asp.net. It displays thumbnails of all tiff pages and upon ...
0
votes
1answer
164 views

Trying to stream a PDF file from server1 to server2 getting file is “damaged file”

i have pdf and doc file in server1 folder path(d:\files\a.pdf) now i want to read file located in server1 from server2 and show in popup with option save and open. below code i written in server1: ...
0
votes
2answers
226 views

Write Word Doc On The Fly

I've got this bit of code: Response.AddHeader("Content-type", "application/vnd.openxmlformats-officedocument.wordprocessingml.document"); Response.AppendHeader("Content-disposition", "attachment; ...
0
votes
2answers
545 views

Editing and Extracting data from a text file (ASP .NET)

I need to extract data from a text file in ASP .NET. Example Data: ; comment data = astringvalue ; comment ; string values person = bob animal = rabbit ; boolean values ...
2
votes
1answer
141 views

Download via ASP.NET can impact IIS performance?

I doing a upload system for my blog engine and thinking if is a good idea to store my files at database/app_data. Or I should store at a normal folder with write permission. My concern is about ...
-4
votes
2answers
54 views

How should I optimize following requirement in my application. Dealing mainly with asp.net 3.5, C#, File I/O, Threading and some other aspects as well

Scenario - It is an simple application through which only single user ( NO Authentication Reqd.) uploads only excel 2003/2010 file one at a time and then two functions are called Foo() & Goo() ...
2
votes
3answers
2k views

File is being used by another process .NET

I need to create/append the text file and write some data in that, when I write the below code to my asp.net application it gives error that file is being used by another process. if ...
1
vote
2answers
8k views

Open any file from asp.net

How can I open any file, specified by a path, in ASP.NET programatically? I tried the snippet below but it reads the contents of the file instead of opening the file: string fileName = ...
1
vote
1answer
254 views

Is It possible to read WebResource.axd in C# code behind

the simple question is, Is It possible to read WebResource.axd in C#, please don't ask why I am trying that. I want to read WebResource.axd file run-time when Index.aspx page requested.
1
vote
2answers
680 views

Writing file from base64 data in an ASPX page with C# code behind

I'm trying to take the base64 encrypted version of a file, decrypt it, and write the file to the server. I can't figure out why this code isn't working, and any help would be appreciated, as of right ...
1
vote
1answer
721 views

FileStream.Write Upload a image, but damaged or corrupted

hi I use FileStream to upload a file to web server, I am using asp.net, the upload works fine when I use Chrome or Firefox, but when I use IE, the file is damaged or corrupted, I could not open it. ...
1
vote
2answers
77 views

Reading from DB and Writing to File

Scenario - There is huge data in database. Utility uses datareader to read the records one by one and appends to a txt/xml file. Originally utility used to read one record, write it to file; Then i ...
0
votes
1answer
47 views

Need a solution for distribute files

I have a file manager application that is writed by asp.net MVC. User can upload, delete, rename and ... any file by it. I deploy this program on D partition and now It is full and I added a new hard ...
0
votes
1answer
469 views

CSV file writing ASP.NET concurrency issue

I have a web form in a .aspx form which takes a users details and then writes the details to a CSV file in C# located on the server. My question is how can I control multiple writes to the CSV file so ...
0
votes
1answer
254 views

Read binary file from a position in ASP.NET

I want to read a binary file from a particular position. I am using the following code but that is not working. FileStream fs = new FileStream(filepath, FileMode.Open, FileAccess.Read); ...
2
votes
3answers
6k views

Check if File exists in directory ignoring the extension

I am using .NET 2.0 and Linq is out of question. I would like to check if file exists inside a directory without knowledge of the file extension. I just need this logic done. 1.Check File exists in ...

1 2 3