Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Do not silently overwrite existing files when doing 'mv --hard'. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
31e75c3a413a7201d043500415c405f4 |
User & Date: | danield 2025-04-01 15:38:39.519 |
Context
2025-04-02
| ||
11:55 | Enable the search in the built-in help text even without a repository. ... (Leaf check-in: 21c54d5d user: tsbg tags: search-in-help) | |
11:52 | Fix a harmless typo in a comment. ... (check-in: 6e47e6b3 user: drh tags: trunk) | |
2025-04-01
| ||
15:38 | Do not silently overwrite existing files when doing 'mv --hard'. ... (check-in: 31e75c3a user: danield tags: trunk) | |
13:33 | Make use of the Accept-Encoding header value to help distinguish humans from robots. ... (check-in: 0d41eb47 user: drh tags: trunk) | |
Changes
Changes to src/add.c.
︙ | ︙ | |||
894 895 896 897 898 899 900 | ** ** The original name of the file is zOrig. The new filename is zNew. */ static void mv_one_file( int vid, const char *zOrig, const char *zNew, | | > > > > > > > | 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 | ** ** The original name of the file is zOrig. The new filename is zNew. */ static void mv_one_file( int vid, const char *zOrig, const char *zNew, int dryRunFlag, int moveFiles ){ int x = db_int(-1, "SELECT deleted FROM vfile WHERE pathname=%Q %s", zNew, filename_collation()); if( x>=0 ){ if( x==0 ){ if( !filenames_are_case_sensitive() && fossil_stricmp(zOrig,zNew)==0 ){ /* Case change only */ }else{ fossil_fatal("cannot rename '%s' to '%s' since another file named '%s'" " is currently under management", zOrig, zNew, zNew); } }else{ fossil_fatal("cannot rename '%s' to '%s' since the delete of '%s' has " "not yet been committed", zOrig, zNew, zNew); } } if( moveFiles ){ if( file_size(zNew, ExtFILE) != -1 ){ fossil_fatal("cannot rename '%s' to '%s' on disk since another file" " named '%s' already exists", zOrig, zNew, zNew); } } fossil_print("RENAME %s %s\n", zOrig, zNew); if( !dryRunFlag ){ db_multi_exec( "UPDATE vfile SET pathname='%q' WHERE pathname='%q' %s AND vid=%d", zNew, zOrig, filename_collation(), vid ); |
︙ | ︙ | |||
1133 1134 1135 1136 1137 1138 1139 | db_finalize(&q); } } db_prepare(&q, "SELECT f, t FROM mv ORDER BY f"); while( db_step(&q)==SQLITE_ROW ){ const char *zFrom = db_column_text(&q, 0); const char *zTo = db_column_text(&q, 1); | | | 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 | db_finalize(&q); } } db_prepare(&q, "SELECT f, t FROM mv ORDER BY f"); while( db_step(&q)==SQLITE_ROW ){ const char *zFrom = db_column_text(&q, 0); const char *zTo = db_column_text(&q, 1); mv_one_file(vid, zFrom, zTo, dryRunFlag, moveFiles); if( moveFiles ) add_file_to_move(zFrom, zTo); } db_finalize(&q); undo_reset(); db_end_transaction(0); if( moveFiles ) process_files_to_move(dryRunFlag); fossil_free(zDest); |
︙ | ︙ |