473,416 Members | 1,506 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,416 software developers and data experts.

Error calling Path.GetTempFileName(): The directory name is invalid

Why am I receiving the below error when calling - Path.GetTempFileName()
The directory name is invalid.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.IO.IOException: The directory name is invalid.

Jul 21 '05 #1
8 17416
Because your TEMP or TMP environment variable (for your web site's account)
is an invalid directory name?

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:Hp********************@comcast.com...
Why am I receiving the below error when calling - Path.GetTempFileName()
The directory name is invalid.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.IO.IOException: The directory name is invalid.

Jul 21 '05 #2
Wouldn't that be the ASPNET user?
If so how do I set the environment for that User?
Jerry Pisk wrote:
Because your TEMP or TMP environment variable (for your web site's account)
is an invalid directory name?

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:Hp********************@comcast.com...
Why am I receiving the below error when calling - Path.GetTempFileName()
The directory name is invalid.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.IO.IOException: The directory name is invalid.



Jul 21 '05 #3
Most likely it would be the ASPNET user. I'm not sure how to set that user's
environment (without writing code) but first check what the temp directory
is, Path.GetTempPath(). Check if the name is valid and the directory exists
and that ASPNET can write into it (but i think you'd get a different
exception if it was a permission issue).

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:ZP********************@comcast.com...
Wouldn't that be the ASPNET user?
If so how do I set the environment for that User?
Jerry Pisk wrote:
Because your TEMP or TMP environment variable (for your web site's
account) is an invalid directory name?

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:Hp********************@comcast.com...
Why am I receiving the below error when calling - Path.GetTempFileName()
The directory name is invalid.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.IO.IOException: The directory name is invalid.


Jul 21 '05 #4
The system environment Temp and Tmp are both set to "C:\WINDOWS\TEMP".
I'm running XP Professional. My user has Temp and Tmp set to:
%USERPROFILE%\Local Settings\Temp.
The Path.GetTempPath is showing the ASPNET user Local Temp.
In windows XP there doesn't seem to any place to specificaly set folder
permissions as in 2000 or 2003 Server for an individual user.

Jerry Pisk wrote:
Most likely it would be the ASPNET user. I'm not sure how to set that user's
environment (without writing code) but first check what the temp directory
is, Path.GetTempPath(). Check if the name is valid and the directory exists
and that ASPNET can write into it (but i think you'd get a different
exception if it was a permission issue).

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:ZP********************@comcast.com...
Wouldn't that be the ASPNET user?
If so how do I set the environment for that User?
Jerry Pisk wrote:
Because your TEMP or TMP environment variable (for your web site's
account) is an invalid directory name?

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:Hp********************@comcast.com...
Why am I receiving the below error when calling - Path.GetTempFileName()
The directory name is invalid.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.IO.IOException: The directory name is invalid.



Jul 21 '05 #5
You need to disable Simple file sharing under Folder Options to be able to
set permissions in WinXP.

If the ASPNET's temp directory is set to a valid path then I don't know what
might be causing the problem.

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:IJ********************@comcast.com...
The system environment Temp and Tmp are both set to "C:\WINDOWS\TEMP". I'm
running XP Professional. My user has Temp and Tmp set to:
%USERPROFILE%\Local Settings\Temp.
The Path.GetTempPath is showing the ASPNET user Local Temp.
In windows XP there doesn't seem to any place to specificaly set folder
permissions as in 2000 or 2003 Server for an individual user.

Jerry Pisk wrote:
Most likely it would be the ASPNET user. I'm not sure how to set that
user's environment (without writing code) but first check what the temp
directory is, Path.GetTempPath(). Check if the name is valid and the
directory exists and that ASPNET can write into it (but i think you'd get
a different exception if it was a permission issue).

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:ZP********************@comcast.com...
Wouldn't that be the ASPNET user?
If so how do I set the environment for that User?
Jerry Pisk wrote:

Because your TEMP or TMP environment variable (for your web site's
account) is an invalid directory name?

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:Hp********************@comcast.com...
>Why am I receiving the below error when calling -
>Path.GetTempFileName()
>
>
>The directory name is invalid.
>Description: An unhandled exception occurred during the execution of
>the current web request. Please review the stack trace for more
>information about the error and where it originated in the code.
>
>Exception Details: System.IO.IOException: The directory name is
>invalid.
>


Jul 21 '05 #6
First off, thanks for all of your advice.

I changed the folder settings, and ASPNET is authorized to write to that
directory.
Path.GetTempPath() returns: C:\DOCUME~1\ATCS\ASPNET\LOCALS~1\Temp\
But, Path.GetTempFileName() still returns an Error, I pasted the info below.

The directory name is invalid.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.IO.IOException: The directory name is invalid.

Source Error:

Line 1847: // Get a temporary system filename
Line 1848: lFile = Path.GetTempPath();
Line 1849: lFile = Path.GetTempFileName();
Line 1850: File.Delete(lFile);
Line 1851: lPath = Path.GetPathRoot(lFile);
Source File: c:\development\visual studio
projects\system\utilities\utilities.cs Line: 1849

Stack Trace:

[IOException: The directory name is invalid.]
System.IO.__Error.WinIOError(Int32 errorCode, String str) +723
System.IO.Path.GetTempFileName() +90
System.Utility.Utilities.GetFilename(String Prefix, String
Extention, Boolean AddDateStamp, Boolean AddTimeStamp) in
c:\development\visual studio projects\system\utilities\utilities.cs:1849
System.Utility.Utilities.GetFilename() in c:\development\visual
studio projects\system\utilities\utilities.cs:1799
System.Utility.TextFile.initializeClass(String File) in
C:\Development\Visual Studio Projects\System\Utilities\TextFile.cs:190
System.Utility.TextFile..ctor() in C:\Development\Visual Studio
Projects\System\Utilities\TextFile.cs:126
System.Utility.LogFile..ctor(String File) in C:\Development\Visual
Studio Projects\System\Utilities\LogFile.cs:75
System.Utility.TraceDebugListener..ctor(String Type) in
C:\Development\Visual Studio
Projects\System\Utilities\TraceDebugListener.cs:82
System.Utility.ListenerDebug..ctor() in C:\Development\Visual Studio
Projects\System\Utilities\ListenerDebug.cs:10
eRMS.Global.Session_Start(Object sender, EventArgs e) in
c:\inetpub\wwwroot\eRMSTest_NET\Global.asax.cs:73
System.Web.SessionState.SessionStateModule.RaiseOn Start(EventArgs e)
System.Web.SessionState.SessionStateModule.OnStart (EventArgs e)
System.Web.SessionState.SessionStateModule.Complet eAcquireState()
System.Web.SessionState.SessionStateModule.BeginAc quireState(Object
source, EventArgs e, AsyncCallback cb, Object extraData)

System.Web.AsyncEventExecutionStep.System.Web.Http Application+IExecutionStep.Execute()
System.Web.HttpApplication.ExecuteStep(IExecutionS tep step, Boolean&
completedSynchronously) +173
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.573;
ASP.NET Version:1.1.4322.573
Again, thanks for all of your help.

Jerry Pisk wrote:
You need to disable Simple file sharing under Folder Options to be able to
set permissions in WinXP.

If the ASPNET's temp directory is set to a valid path then I don't know what
might be causing the problem.

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:IJ********************@comcast.com...
The system environment Temp and Tmp are both set to "C:\WINDOWS\TEMP". I'm
running XP Professional. My user has Temp and Tmp set to:
%USERPROFILE%\Local Settings\Temp.
The Path.GetTempPath is showing the ASPNET user Local Temp.
In windows XP there doesn't seem to any place to specificaly set folder
permissions as in 2000 or 2003 Server for an individual user.

Jerry Pisk wrote:
Most likely it would be the ASPNET user. I'm not sure how to set that
user's environment (without writing code) but first check what the temp
directory is, Path.GetTempPath(). Check if the name is valid and the
directory exists and that ASPNET can write into it (but i think you'd get
a different exception if it was a permission issue).

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:ZP********************@comcast.com...
Wouldn't that be the ASPNET user?
If so how do I set the environment for that User?
Jerry Pisk wrote:
>Because your TEMP or TMP environment variable (for your web site's
>account) is an invalid directory name?
>
>Jerry
>
>"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
>news:Hp********************@comcast.com...
>
>
>
>>Why am I receiving the below error when calling -
>>Path.GetTempFileName()
>>
>>
>>The directory name is invalid.
>>Description: An unhandled exception occurred during the execution of
>>the current web request. Please review the stack trace for more
>>information about the error and where it originated in the code.
>>
>>Exception Details: System.IO.IOException: The directory name is
>>invalid.
>>
>
>
>



Jul 21 '05 #7
Unless you changed the default directory structure there's one directory too
much in that path. I don't think that \ATCS\ should be there, that is unless
you moved your profiles from C:\Documents and Settings\ to C:\Documents and
Settings\ATCS\. If you didn't there's your problem.

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:JM********************@comcast.com...
First off, thanks for all of your advice.

I changed the folder settings, and ASPNET is authorized to write to that
directory.
Path.GetTempPath() returns: C:\DOCUME~1\ATCS\ASPNET\LOCALS~1\Temp\
But, Path.GetTempFileName() still returns an Error, I pasted the info
below.

The directory name is invalid.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.IO.IOException: The directory name is invalid.

Source Error:

Line 1847: // Get a temporary system filename
Line 1848: lFile = Path.GetTempPath();
Line 1849: lFile = Path.GetTempFileName();
Line 1850: File.Delete(lFile);
Line 1851: lPath = Path.GetPathRoot(lFile);
Source File: c:\development\visual studio
projects\system\utilities\utilities.cs Line: 1849

Stack Trace:

[IOException: The directory name is invalid.]
System.IO.__Error.WinIOError(Int32 errorCode, String str) +723
System.IO.Path.GetTempFileName() +90
System.Utility.Utilities.GetFilename(String Prefix, String Extention,
Boolean AddDateStamp, Boolean AddTimeStamp) in c:\development\visual
studio projects\system\utilities\utilities.cs:1849
System.Utility.Utilities.GetFilename() in c:\development\visual studio
projects\system\utilities\utilities.cs:1799
System.Utility.TextFile.initializeClass(String File) in
C:\Development\Visual Studio Projects\System\Utilities\TextFile.cs:190
System.Utility.TextFile..ctor() in C:\Development\Visual Studio
Projects\System\Utilities\TextFile.cs:126
System.Utility.LogFile..ctor(String File) in C:\Development\Visual
Studio Projects\System\Utilities\LogFile.cs:75
System.Utility.TraceDebugListener..ctor(String Type) in
C:\Development\Visual Studio
Projects\System\Utilities\TraceDebugListener.cs:82
System.Utility.ListenerDebug..ctor() in C:\Development\Visual Studio
Projects\System\Utilities\ListenerDebug.cs:10
eRMS.Global.Session_Start(Object sender, EventArgs e) in
c:\inetpub\wwwroot\eRMSTest_NET\Global.asax.cs:73
System.Web.SessionState.SessionStateModule.RaiseOn Start(EventArgs e)
System.Web.SessionState.SessionStateModule.OnStart (EventArgs e)
System.Web.SessionState.SessionStateModule.Complet eAcquireState()
System.Web.SessionState.SessionStateModule.BeginAc quireState(Object
source, EventArgs e, AsyncCallback cb, Object extraData)

System.Web.AsyncEventExecutionStep.System.Web.Http Application+IExecutionStep.Execute()
System.Web.HttpApplication.ExecuteStep(IExecutionS tep step, Boolean&
completedSynchronously) +173
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.573;
ASP.NET Version:1.1.4322.573
Again, thanks for all of your help.

Jerry Pisk wrote:
You need to disable Simple file sharing under Folder Options to be able
to set permissions in WinXP.

If the ASPNET's temp directory is set to a valid path then I don't know
what might be causing the problem.

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:IJ********************@comcast.com...
The system environment Temp and Tmp are both set to "C:\WINDOWS\TEMP".
I'm running XP Professional. My user has Temp and Tmp set to:
%USERPROFILE%\Local Settings\Temp.
The Path.GetTempPath is showing the ASPNET user Local Temp.
In windows XP there doesn't seem to any place to specificaly set folder
permissions as in 2000 or 2003 Server for an individual user.

Jerry Pisk wrote:

Most likely it would be the ASPNET user. I'm not sure how to set that
user's environment (without writing code) but first check what the temp
directory is, Path.GetTempPath(). Check if the name is valid and the
directory exists and that ASPNET can write into it (but i think you'd
get a different exception if it was a permission issue).

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:ZP********************@comcast.com...
>Wouldn't that be the ASPNET user?
>If so how do I set the environment for that User?
>
>
>Jerry Pisk wrote:
>
>
>>Because your TEMP or TMP environment variable (for your web site's
>>account) is an invalid directory name?
>>
>>Jerry
>>
>>"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
>>news:Hp********************@comcast.com...
>>
>>
>>
>>>Why am I receiving the below error when calling -
>>>Path.GetTempFileName()
>>>
>>>
>>>The directory name is invalid.
>>>Description: An unhandled exception occurred during the execution of
>>>the current web request. Please review the stack trace for more
>>>information about the error and where it originated in the code.
>>>
>>>Exception Details: System.IO.IOException: The directory name is
>>>invalid.
>>>
>>
>>
>>


Jul 21 '05 #8
ATCS is this computers name, I didn't move any user profiles. The other
users profiles on this machine are just under Document and Settings,
ASPNET is the only one under ATCS. GetTempPath returns the correct
path, I mean C:\Documents and Settngs\ATCS..., so why would
GetTempFileName return an error... It doesn't make any sense. Do you
know how to change the Temp path for a specific user running XP?
Jerry Pisk wrote:
Unless you changed the default directory structure there's one directory too
much in that path. I don't think that \ATCS\ should be there, that is unless
you moved your profiles from C:\Documents and Settings\ to C:\Documents and
Settings\ATCS\. If you didn't there's your problem.

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:JM********************@comcast.com...
First off, thanks for all of your advice.

I changed the folder settings, and ASPNET is authorized to write to that
directory.
Path.GetTempPath() returns: C:\DOCUME~1\ATCS\ASPNET\LOCALS~1\Temp\
But, Path.GetTempFileName() still returns an Error, I pasted the info
below.

The directory name is invalid.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.IO.IOException: The directory name is invalid.

Source Error:

Line 1847: // Get a temporary system filename
Line 1848: lFile = Path.GetTempPath();
Line 1849: lFile = Path.GetTempFileName();
Line 1850: File.Delete(lFile);
Line 1851: lPath = Path.GetPathRoot(lFile);
Source File: c:\development\visual studio
projects\system\utilities\utilities.cs Line: 1849

Stack Trace:

[IOException: The directory name is invalid.]
System.IO.__Error.WinIOError(Int32 errorCode, String str) +723
System.IO.Path.GetTempFileName() +90
System.Utility.Utilities.GetFilename(String Prefix, String Extention,
Boolean AddDateStamp, Boolean AddTimeStamp) in c:\development\visual
studio projects\system\utilities\utilities.cs:1849
System.Utility.Utilities.GetFilename() in c:\development\visual studio
projects\system\utilities\utilities.cs:1799
System.Utility.TextFile.initializeClass(String File) in
C:\Development\Visual Studio Projects\System\Utilities\TextFile.cs:190
System.Utility.TextFile..ctor() in C:\Development\Visual Studio
Projects\System\Utilities\TextFile.cs:126
System.Utility.LogFile..ctor(String File) in C:\Development\Visual
Studio Projects\System\Utilities\LogFile.cs:75
System.Utility.TraceDebugListener..ctor(String Type) in
C:\Development\Visual Studio
Projects\System\Utilities\TraceDebugListener.cs: 82
System.Utility.ListenerDebug..ctor() in C:\Development\Visual Studio
Projects\System\Utilities\ListenerDebug.cs:10
eRMS.Global.Session_Start(Object sender, EventArgs e) in
c:\inetpub\wwwroot\eRMSTest_NET\Global.asax.cs:7 3
System.Web.SessionState.SessionStateModule.RaiseOn Start(EventArgs e)
System.Web.SessionState.SessionStateModule.OnStart (EventArgs e)
System.Web.SessionState.SessionStateModule.Complet eAcquireState()
System.Web.SessionState.SessionStateModule.BeginAc quireState(Object
source, EventArgs e, AsyncCallback cb, Object extraData)

System.Web.AsyncEventExecutionStep.System.Web.Ht tpApplication+IExecutionStep.Execute()
System.Web.HttpApplication.ExecuteStep(IExecutionS tep step, Boolean&
completedSynchronously) +173
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.573;
ASP.NET Version:1.1.4322.573
Again, thanks for all of your help.

Jerry Pisk wrote:
You need to disable Simple file sharing under Folder Options to be able
to set permissions in WinXP.

If the ASPNET's temp directory is set to a valid path then I don't know
what might be causing the problem.

Jerry

"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
news:IJ********************@comcast.com...
The system environment Temp and Tmp are both set to "C:\WINDOWS\TEMP".
I'm running XP Professional. My user has Temp and Tmp set to:
%USERPROFILE%\Local Settings\Temp.
The Path.GetTempPath is showing the ASPNET user Local Temp.
In windows XP there doesn't seem to any place to specificaly set folder
permissions as in 2000 or 2003 Server for an individual user.

Jerry Pisk wrote:
>Most likely it would be the ASPNET user. I'm not sure how to set that
>user's environment (without writing code) but first check what the temp
>directory is, Path.GetTempPath(). Check if the name is valid and the
>directory exists and that ASPNET can write into it (but i think you'd
>get a different exception if it was a permission issue).
>
>Jerry
>
>"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
>news:ZP********************@comcast.com...
>
>
>
>>Wouldn't that be the ASPNET user?
>>If so how do I set the environment for that User?
>>
>>
>>Jerry Pisk wrote:
>>
>>
>>
>>>Because your TEMP or TMP environment variable (for your web site's
>>>account) is an invalid directory name?
>>>
>>>Jerry
>>>
>>>"Glenn A. Harlan" <ga******@hotmail.com> wrote in message
>>>news:Hp********************@comcast.com.. .
>>>
>>>
>>>
>>>
>>>>Why am I receiving the below error when calling -
>>>>Path.GetTempFileName()
>>>>
>>>>
>>>>The directory name is invalid.
>>>>Description: An unhandled exception occurred during the execution of
>>>>the current web request. Please review the stack trace for more
>>>>information about the error and where it originated in the code.
>>>>
>>>>Exception Details: System.IO.IOException: The directory name is
>>>>invalid.
>>>>
>>>
>>>
>>>



Jul 21 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Wayno | last post by:
My php logs are coming up empty. I have done all I can think of, and all that made sense to me. Can someone take a look at my php.ini please and tell me what you think may be the problem. I...
4
by: ScottH | last post by:
I am running 7.2 with fixpack 10a under W2K. I got a backup from someone else in an attempt to debug a data issue. The other person created the database with UTF-8 (codepage 1208), so I created a...
2
by: Bragadiru | last post by:
I tried to use : System::String* outFile = System::IO::Path::GetTempFileName(); but I get this compile error: error C2039: 'GetTempFileNameA' : is not a member of 'System::IO::Path' I found...
9
by: Tim D | last post by:
Hi, I originally posted this as a reply to a rather old thread in dotnet.framework.general and didn't get any response. I thought it might be more relevant here; anyone got any ideas? My...
8
by: Glenn A. Harlan | last post by:
Why am I receiving the below error when calling - Path.GetTempFileName() The directory name is invalid. Description: An unhandled exception occurred during the execution of the current web...
0
by: ruju00 | last post by:
I am getting an error in Login() method of the following class FtpConnection public class FtpConnection { public class FtpException : Exception { public FtpException(string message) :...
0
by: HKSHK | last post by:
This list compares the error codes used in VB.NET 2003 with those used in VB6. Error Codes: ============ 3: This Error number is obsolete and no longer used. (Formerly: Return without GoSub)...
2
by: teddybyte | last post by:
my script below is: #include "stdafx.h" int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, ...
6
by: tgnelson85 | last post by:
Hello, C question here (running on Linux, though there should be no platform specific code). After reading through a few examples, and following one in a book, for linked lists i thought i would...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.