summaryrefslogtreecommitdiffstats
path: root/win/tclWinFile.c
Commit message (Collapse)AuthorAgeFilesLines
* Open linked folder shared on Windows - Patch [19ea026e43]oehhar2015-04-231-1/+1
|
* Improve documentation on the use of com ports (remove references to Windows ↵jan.nijtmans2014-11-131-2/+2
| | | | | 95, deprecate the use of postfix ':'). Allow lpt[5-9] just as com[5-9], and make sure that path normalization works as expected for ports > 4.
* Extend WinIsReserved() to recognize COM[5-9]: as valid com ports as well.jan.nijtmans2014-10-311-2/+2
|
* When translating a reserved devicename to native pathname, strip ':' ↵jan.nijtmans2014-10-311-1/+4
| | | | postfix. Possible fix for [dcc03414f5], but anyway a good idea.
* Fix [3118489]: NUL in filenames. (On Windows, protect against invalid use of ↵jan.nijtmans2014-05-151-2/+61
| | | | ':' in filenames as well)
* [792641f95b]: Normalized win32 paths should never contain backslash.jan.nijtmans2014-04-101-9/+6
|
* Slightly more correct: If FindFirstFile() fails, the error should be "no ↵jan.nijtmans2013-03-201-1/+1
|\ | | | | | | such file or directory" (ENOENT) not "permission denied" (EACCES).
| * Slightly more correct: If FindFirstFile() fails, the error should be "no ↵jan.nijtmans2013-03-201-1/+1
| | | | | | | | such file or directory" (ENOENT) not "permission denied" (EACCES).
* | Handle the (unlikely) case that the file is deleted in between. Suggested by ↵jan.nijtmans2013-03-191-0/+4
|\ \ | |/ | | | | Harald Oehlmann (Thanks!)
| * Handle the (unlikely) case that the file is deleted in between. Suggested by ↵jan.nijtmans2013-03-191-0/+4
| | | | | | | | Harald Oehlmann (Thanks!)
* | [Bug 2893771]: file stat fails on locked files on win32.jan.nijtmans2013-03-191-5/+17
|\ \ | |/
| * make sure that [file stat] returns the right data, even for locked files.jan.nijtmans2013-03-191-0/+6
| |
| * [Bug 2893771]: file stat fails on locked files on win32.jan.nijtmans2013-03-191-5/+11
| |
* | Unbreak msvc builds, by depending on tclPort.h for inclusion of <sys/stat.h>.jan.nijtmans2013-02-101-1/+0
| |
* | [Bug 3603434] Make sure TclpObjNormalizePath() properly declares "a:/" todgp2013-02-051-0/+12
|\ \ | |/ | | be normalized, even when no "A:" drive is present on the system.
| * Fix for Bug 3603434.bug_3603434dgp2013-02-051-0/+12
| |
| * Backported [Bug 2882342]: correct struct _REPARSE_DATA_BUFFER in tcl 8.4jan.nijtmans2013-01-091-15/+16
| |
* | revert [8abba84224], and make sure that every source file that uses ↵jan.nijtmans2013-01-171-1/+1
| | | | | | | | Tcl_StatBuf has an "#include <sys/stat.h>" before including tcl.h
* | [Bug 3092089]: [file normalize] can remove path components.jan.nijtmans2013-01-081-5/+6
|\ \ | |/ | | [Bug 3587096] win vista/7: "can't find init.tcl" when called via junction.
| * [Bug 3092089]: [file normalize] can remove path components.jan.nijtmans2013-01-081-5/+6
| |\ | | | | | | [Bug 3587096] win vista/7: "can't find init.tcl" when called via junction.
| | * new attempt for better fixbug_3092089jan.nijtmans2013-01-081-11/+6
| | |
| | * suggested fix for Bug 3092089: [file normalize] can remove path component, jan.nijtmans2013-01-031-0/+6
| |/ |/| | | and for Bug 3587096: startup error message when exe in folder with junction with limited rights
| * tclStubInit.c: move up #undef, so it is clear that thisjan.nijtmans2012-04-041-3/+3
| | | | | | | | macro is conflicting with another definition in this file. Fix some other gcc warnings
| * [Bug 3288345] Wrong Tcl_StatBuf used on Cygwinjan.nijtmans2012-03-201-60/+0
| | | | | | (backported from Tcl 8.5)
* | xjan.nijtmans2012-03-151-62/+0
| |
* | [Bug 3388350] mingw64 compiler warningsjan.nijtmans2012-03-121-2/+2
|\ \ | |/
| * [Bug 3388350] mingw64 compiler warningsjan.nijtmans2012-03-121-2/+2
| |
| * 2974459,2879351,1951574,1852572,1661378,1613456 Revisions to the NativeAccess()dgp2012-02-021-24/+46
| |\ | |/ |/| | | | | | | routine that queries file permissions on Windows native filesystems. Meant to fix numerous bugs where [file writable|readable|executable] "lies" about what operations are possible, especially when the file resides on a Samba share. Patch cherrypicked off the fix-win-native-access branch.
* | merge to bugfix branchdgp2012-01-241-4/+0
|\ \
* | | Contributed patch aiming to fix [file writable] problems on Windows & Samba.dgp2012-01-111-20/+45
|/ /
* | [Bug 2935503] Windows: file mtime sets wrong time (VS2005+ only)jan.nijtmans2011-11-221-3/+0
|\ \ | |/
| * [Bug 2935503]: Windows: file mtime sets wrong timejan.nijtmans2011-11-221-0/+1
| |
* | [Bug 2935503] Incorrect mode field returned by file stat commandjan.nijtmans2011-10-111-3/+3
|\ \ | |/
| * [Bug 2935503] Incorrect mode field returned by file stat commandjan.nijtmans2011-10-111-3/+3
| |
| * [Bug 3388350] mingw64 compiler warningsjan.nijtmans2011-08-161-1/+1
| | | | | | | | n mingw, sys/stat.h must be included before winsock2.h, so make sure of that
* | Oops, tclWinFile.c was not supposed to be checked injan.nijtmans2011-08-151-3/+3
| |
* | [Bug 3388350] mingw64 compiler warningsjan.nijtmans2011-08-151-3/+3
|\ \ | |/
* | [Bug 3288345]: Bring cygwin Tcl_StatBuf a little closer to realityjan2011-04-211-2/+3
|\ \ | |/
| * fix for [Bug 3288345]: Wrong Tcl_StatBuf used on MinGW. Follow-up: get it ↵jan2011-04-201-2/+3
| | | | | | | | right for cygwin and WIN64 as well.
* | Now that we're no longer using SCM based on RCS, the RCS Keyword lines causedgp2011-03-021-2/+0
|\ \ | |/ | | more harm than good. Purged them.
| * Now that we're no longer using SCM based on RCS, the RCS Keyword lines causedgp2011-03-011-2/+0
| | | | | | more harm than good. Purged them.
| * * win/tclWinFile.c (TclpObjNormalizePath): Corrected Tcl_Obj leak.dgp2009-03-181-2/+12
| | | | | | | | Thanks to Joe Mistachkin for detection and patch. [Bug 2688184].
| * * generic/tclIOUtil.c: Cleaned up some code flagged by adgp2006-10-171-3/+1
| | | | | | | | | | | | * generic/tclInt.h: `make checkexports` test. * win/tclWin32Dll.c: * win/tclWinFile.c:
| * Handle possible missing definepatthoyts2006-10-011-4/+7
| |
| * Backported fix for bug #1420432 (cannot set mtime for directories on windows).patthoyts2006-10-011-4/+14
| |
| * backport of file writable fixesvincentdarley2006-03-191-4/+3
| |
| * backport of some file readable/writable fixes from HEADvincentdarley2006-03-101-12/+172
| |
| * Bugs 926106 and 1353840Kevin B Kenny2005-11-151-60/+85
| |
| * * win/tclWinFile.c: Potential buffer overflow. [Bug 1225571]dgp2005-06-221-3/+3
| | | | | | | | Thanks to Pat Thoyts for discovery and fix.
| * fix to file norm, file pathtype on windows reserved filenamesvincentdarley2005-03-151-3/+80
| |