| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove ending space or dot when copying files from FAT | Christophe Grenier | 2018-10-30 | 1 | -0/+12 |
* | TestDisk: consider as a potential FAT32 root directory directories with date ... | Christophe Grenier | 2018-03-22 | 1 | -18/+21 |
* | Fix memory leak if getwd(".") failed | Christophe Grenier | 2018-03-17 | 1 | -0/+3 |
* | MinGW: use localtime() instead of localtime_r() | Christophe Grenier | 2017-04-18 | 1 | -1/+5 |
* | Use localtime_t() instead of localtime() | Christophe Grenier | 2017-04-15 | 1 | -34/+23 |
* | add "filecopy" parameters to copy all the files from a partition | Christophe Grenier | 2016-10-26 | 1 | -0/+61 |
* | src/dir.c: move inode validation to is_inode_valid() | Christophe Grenier | 2016-10-26 | 1 | -24/+27 |
* | Use double quote when using cpp #warning | Christophe Grenier | 2016-08-16 | 1 | -1/+1 |
* | Use TD_INIT_LIST_HEAD() function instead of TD_LIST_HEAD_INIT() static initia... | Christophe Grenier | 2016-04-10 | 1 | -4/+2 |
* | use td_list_entry_const() instead of td_list_entry() when variable is defined... | Christophe Grenier | 2015-06-24 | 1 | -3/+3 |
* | Add parenthesis to turn off some cppcheck warnings (code style) | Christophe Grenier | 2015-06-23 | 1 | -9/+9 |
* | Avoid additional NULL pointer derefence when localtime() failed | Christophe Grenier | 2014-01-25 | 1 | -23/+26 |
* | fix minor code defects | Christophe Grenier | 2013-11-03 | 1 | -2/+2 |
* | code style fix when using set_mode() | Christophe Grenier | 2013-11-01 | 1 | -2/+2 |
* | Constify some variables | Christophe Grenier | 2013-05-26 | 1 | -7/+4 |
* | Fix file copy regression by removing static declaration of file_info_t structure | Christophe Grenier | 2013-05-08 | 1 | -1/+1 |
* | Migrate from file_data to file_info structure | Christophe Grenier | 2013-05-05 | 1 | -29/+23 |
* | filesort(): better handle . and .. directory entries | Christophe Grenier | 2013-04-27 | 1 | -1/+6 |
* | Don't depend on "struct stat" for storing information about files, this | Christophe Grenier | 2012-11-06 | 1 | -26/+18 |
* | New function td_list_entry_const() | Christophe Grenier | 2012-04-14 | 1 | -2/+2 |
* | Don't follow ".." when listing the whole filesystem | Christophe Grenier | 2011-10-25 | 1 | -0/+2 |
* | Workaround for Dos/DJGPP, stat.st_size seems to be 31 bits only. | Christophe Grenier | 2011-04-21 | 1 | -0/+8 |
* | Reserve 9 digits instead of 7 to display file size in directory listing | Christophe Grenier | 2011-04-21 | 1 | -3/+3 |
* | Reduce memory usage during NTFS undelete | Christophe Grenier | 2010-11-22 | 1 | -4/+5 |
* | Code cleanup | Christophe Grenier | 2010-08-23 | 1 | -1/+3 |
* | dir.c: little code reorganisation | Christophe Grenier | 2009-09-30 | 1 | -6/+5 |
* | Move set_date() to a separate file | Christophe Grenier | 2009-08-12 | 1 | -32/+0 |
* | TestDisk: Convert the directory name when it can't be created (Cygwin version) | Christophe Grenier | 2009-07-03 | 1 | -1/+2 |
* | Always include stdio.h before ncurses header and types.h | Christophe Grenier | 2009-06-12 | 1 | -1/+1 |
* | Fix some compilation warnings | Christophe Grenier | 2009-02-03 | 1 | -11/+2 |
* | Fix some missing headers for cygwin | Christophe Grenier | 2009-02-01 | 1 | -0/+3 |
* | Split ncurses text interface from functions | Christophe Grenier | 2009-01-14 | 1 | -420/+8 |
* | NTFS MFT repair: Warn if the file listing doesn't contain more than 2 directo... | Christophe Grenier | 2008-11-28 | 1 | -1/+4 |
* | dir.c: code cleanup | Christophe Grenier | 2008-11-18 | 1 | -6/+5 |
* | When copying filenames, try to deal more efficently with filename restriction | Christophe Grenier | 2008-11-16 | 1 | -20/+329 |
* | TestDisk: Add fullpathname parameter to display filename with the pathname | Christophe Grenier | 2008-10-07 | 1 | -31/+49 |
* | Split the interface in several files | Christophe Grenier | 2008-08-24 | 1 | -8/+4 |
* | Sort deleted NTFS files | Christophe Grenier | 2008-08-11 | 1 | -2/+61 |
* | Rename filestat to stat in struct dir_data | Christophe Grenier | 2008-08-09 | 1 | -23/+23 |
* | When listing files, very long filenames may corrupted the screen. Rewrite the... | Christophe Grenier | 2008-07-13 | 1 | -47/+49 |
* | TestDisk: add Undelete in the Advanced menu for FAT and ext2 | Christophe Grenier | 2008-07-03 | 1 | -1/+2 |
* | Fix filenames when copying accentuated filenames from a FAT under MacOSX | Christophe Grenier | 2008-06-02 | 1 | -7/+1 |
* | Portability fix for system missing S_IRUSR, S_IWUSR, S_IXUSR... | Christophe Grenier | 2008-06-01 | 1 | -0/+18 |
* | support for file copy from ext2/ext3 | Christophe Grenier | 2008-05-27 | 1 | -0/+51 |
* | When listing local directories, directories first, files next, both sorted by... | Christophe Grenier | 2008-05-01 | 1 | -2/+23 |
* | Deleted files can be shown or not when listing files. | Christophe Grenier | 2008-04-29 | 1 | -246/+266 |
* | Add /cmd device ...,list,recursive support | Christophe Grenier | 2008-03-09 | 1 | -2/+49 |
* | file undelete for FAT filesystem | Christophe Grenier | 2008-02-25 | 1 | -10/+37 |
* | "testdisk -lu device" will list the partition with sector unit | Christophe Grenier | 2007-12-06 | 1 | -1/+1 |
* | - Use wprintw ncurses function instead of a custom one | Christophe Grenier | 2007-11-02 | 1 | -11/+11 |