CN111813747A - File batch renaming method, electronic equipment and computer readable storage medium - Google Patents

File batch renaming method, electronic equipment and computer readable storage medium Download PDF

Info

Publication number
CN111813747A
CN111813747A CN202010659873.9A CN202010659873A CN111813747A CN 111813747 A CN111813747 A CN 111813747A CN 202010659873 A CN202010659873 A CN 202010659873A CN 111813747 A CN111813747 A CN 111813747A
Authority
CN
China
Prior art keywords
renaming
file
array
character
character string
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
CN202010659873.9A
Other languages
Chinese (zh)
Inventor
赖霖枫
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Guangdong 115 Technology Co ltd
Original Assignee
Guangdong 115 Technology Co ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Guangdong 115 Technology Co ltd filed Critical Guangdong 115 Technology Co ltd
Priority to CN202010659873.9A priority Critical patent/CN111813747A/en
Publication of CN111813747A publication Critical patent/CN111813747A/en
Pending legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/10File systems; File servers
    • G06F16/16File or folder operations, e.g. details of user interfaces specifically adapted to file systems
    • G06F16/164File meta data generation
    • G06F16/166File name conversion

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Human Computer Interaction (AREA)
  • Data Mining & Analysis (AREA)
  • Databases & Information Systems (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)

Abstract

The invention discloses a file batch renaming method, which comprises the following steps: (1) acquiring a file batch renaming request; (2) displaying a renaming rule setting window; (3) adding selected file information in the file batch renaming request to the first array and adding a renaming rule set by a user to the second array; (4) traversing the second array, and modifying the file name of each file in the first array by adopting the renaming rule of the current node of the second array until the traversal of the second array is finished; (5) converting the first array into a JSON format and displaying, and displaying a file name modification confirmation window at the same time; (6) and after the confirmed modification information is acquired, the JSON format is reversely converted into an array, and the modified file name of each file is stored. The invention realizes the batch renaming of the files by adopting various renaming rules, and the operation of the user is simple. In addition, the invention also discloses an electronic device and a computer readable storage medium.

Description

File batch renaming method, electronic equipment and computer readable storage medium
Technical Field
The invention relates to the technical field of computers, in particular to a file batch renaming method, electronic equipment and a computer-readable storage medium.
Background
The user may be involved in managing and ordering personal files by renaming a large number of files. In the prior art, file renaming is mainly performed in the following two ways: the method comprises the steps of renaming a single file manually and renaming a plurality of files automatically in sequence, wherein the renaming of the file graphical interface based on the electronic equipment is operated, the user operation is simple, the function is simple, a plurality of file renaming rule modes (such as replacing characters in batches, changing the positions of the characters and the like) cannot be supported, and more use scenes of file renaming cannot be met. And secondly, renaming based on the command line is matched with the text processing command and the file renaming command, but the operation and interaction are too complex, a user needs to master more professional knowledge, and the use threshold is higher.
Disclosure of Invention
The invention aims to provide a file batch renaming method, electronic equipment and a computer-readable storage medium which support multiple renaming rules and are simple in user operation.
In order to achieve the aim, the invention provides a file batch renaming method, which comprises the following steps: (1) acquiring a file batch renaming request; (2) displaying a renaming rule setting window and acquiring a renaming rule set by a user; (3) adding the selected file information in the file batch renaming request to a preset first array and adding a renaming rule set by a user to a preset second array; (4) and traversing a second array, and modifying the file name of each file in the first array by adopting the renaming rule of the current node of the second array until the traversal of the second array is finished.
Preferably, after the step (4), the method further comprises the steps of: (5) converting the first array into a JSON format and displaying, and displaying a file name modification confirmation window at the same time; (6) and after the modification confirmation information is acquired, the JSON format is reversely converted into an array, and the modified file name of each file is stored.
Specifically, before step (3), the method further comprises: defining the first array and the second array.
Preferably, when the type of the renaming rule of the current node of the second array is character adding, modifying the file name specifically includes: dividing the whole character string of the file name into a front character string and a rear character string by taking the position where the character needs to be added as a boundary, filling the character to be added between the two character strings, and combining the character and the two character strings.
Preferably, when the type of the renaming rule of the current node of the second array is letter case conversion, modifying the file name specifically includes: splitting the whole character string of the file name into a plurality of independent characters, then judging whether each character is English a-Z or A-Z, if so, converting the corresponding character into capital or lowercase, and combining the converted independent characters.
Preferably, when the type of the renaming rule of the current node of the second array is a mobile character, modifying the file name specifically includes: splitting a character to be moved and characters positioned in front of and behind the character to be moved into a front character string, a character string to be moved and a rear character string, then judging whether the digit of a moved target position is greater than the digit of an original position of the character to be moved, if so, splitting the rear character string into a first character string and a second character string by taking the target position as a boundary, and filling the character to be moved between the first character string and the second character string and combining the character to be moved; if not, splitting the former character string into a third character string and a fourth character string by taking the target position as a boundary, filling the character to be moved between the third character string and the fourth character string, and combining the character to be moved.
Preferably, when the type of the renaming rule of the current node of the second array is to add a music parameter, modifying the file name specifically includes: and searching attribute parameters of the file by using FFmpeg, wherein the attribute parameters comprise an artist, a song name, an album, creation time and a music type, and then adding corresponding attribute parameters at corresponding positions of the file name according to a renaming rule of the current node.
Preferably, when the renaming rule is a type of Chinese traditional/simplified conversion, OpenCC is used to convert the Chinese character string from traditional/simplified to simplified/traditional.
To achieve the above object, the present invention further provides an electronic device, which includes one or more processors and a memory, where the memory is used to store one or more computer programs, and when the one or more processors execute the one or more computer programs, the file batch renaming method as described above is performed.
To achieve the above object, the present invention further provides a computer-readable storage medium storing a computer program executable by a processor to perform the file batch renaming method as described above.
Compared with the prior art, the file renaming method and the file renaming device have the advantages that the file information selected by the user and the set renaming rules are respectively added to the preset first array and the preset second array, then the file name of each file in the first array is modified by sequentially adopting the renaming rules in the second array in a mode of traversing the arrays, and accordingly batch renaming of the files by adopting various renaming rules is realized. In addition, the renaming rule setting window is provided according to the file batch renaming request of the user, the user only needs to input the renaming rule in the renaming rule setting window, and the operation is simple.
Drawings
FIG. 1 is a flowchart of a file batch renaming method according to an embodiment of the invention.
FIG. 2 is a diagram of a renaming rule set window according to the present invention.
FIG. 3 is a diagram illustrating an embodiment of a renaming rule setup window when the type of renaming rule is a find replacement.
Fig. 4 is a diagram illustrating an embodiment of a renaming rule setup window when the type of the renaming rule is an addition sequence number.
FIG. 5 is a diagram illustrating an embodiment of a renaming rule setup window when the type of renaming rule is adding a delimiter.
FIG. 6 is a diagram illustrating an embodiment of a renaming rule setup window when the type of renaming rule is adding regular characters.
Fig. 7 is a diagram illustrating an embodiment of a renaming rule setting window when the type of the renaming rule is a delete character.
FIG. 8 is a diagram illustrating an embodiment of a renaming rule setup window when the type of renaming rule is a moving character.
FIG. 9 is a diagram illustrating an embodiment of a renaming rule setup window when the type of the renaming rule is letter case change.
FIG. 10 is a diagram illustrating an embodiment of a renaming rule setup window when the renaming rule type is a Chinese traditional and simplified conversion.
Fig. 11 is a diagram illustrating an embodiment of a renaming rule setting window when the type of the renaming rule is the addition of a music parameter.
FIG. 12 is a diagram illustrating an embodiment of a renaming rule setup window when the type of the renaming rule is adding an image parameter.
Fig. 13 is a diagram illustrating an embodiment of a renaming rule setting window when the type of the renaming rule is full-angle half-angle conversion.
Fig. 14 is a block diagram of a structure of an electronic device according to an embodiment of the invention.
Detailed Description
In order to explain technical contents and structural features of the present invention in detail, the following description is further made with reference to the accompanying drawings. It is to be understood that the described embodiments are merely a subset of embodiments of the invention and not all embodiments of the invention, with the understanding that the invention is not limited to the example embodiments described herein. All other embodiments, which can be derived by a person skilled in the art from the described embodiments without inventive effort, shall fall within the scope of protection of the invention.
The invention relates to a file batch renaming method which supports various renaming rules and is simple in user operation, so that the management requirements of a user on personal files and information are met, and more comprehensive use and interaction experience is provided for the user. As shown in fig. 1, in an embodiment, the file batch renaming method specifically includes the following steps:
(1) and acquiring a file batch renaming request.
(2) And displaying a renaming rule setting window and acquiring the renaming rule set by the user.
(3) And adding the file information selected in the file batch renaming request to the first array and adding the renaming rule set by the user to the second array. The selected files may be word documents, picture files, audio files, video files, and the like, or folders containing a plurality of word documents, video files, and the like.
(4) And traversing the second array, and modifying the file name of each file in the first array by adopting the renaming rule of the current node of the second array until the traversal of the second array is finished.
(5) And converting the first array into a JSON format and displaying the JSON format, and simultaneously displaying a file name modification confirmation window for a user to preview a renaming result.
(6) And after the confirmed modification information is acquired, the JSON format is reversely converted into an array, and the modified file name of each file is stored.
According to the method and the device, the file information selected by the user and the set renaming rule are respectively added to the preset first array and the preset second array, then the file name of each file in the first array is modified by sequentially adopting the renaming rules of the second array in a mode of traversing the arrays, and therefore batch renaming of the files by adopting various renaming rules is realized. Moreover, the renaming rule setting window is provided according to the file batch renaming request of the user, the user only needs to input the renaming rule in the renaming rule setting window (for example, when the type of the renaming rule is character adding, the user only needs to select the renaming rule in the renaming rule setting window to be character adding and input the character to be added and the target position of the character to be added), and the operation is simple. In addition, the user confirmation process is increased by the setting of the steps (5) and (6), and the accuracy of batch renaming is ensured (the adopted renaming rule and the file for renaming are the renaming rule and the file required by the user).
In some embodiments, before modifying the file name of the file in the first array, it is determined whether the parameter of the node in the second array matches the file information in the first array (for example, before deleting the character, it is determined whether the file name in the first array has a character to be deleted defined in the renaming rule), and if the parameter of the node in the second array matches the file information in the first array, the renaming logic is entered to modify the file name by using the renaming rule of the current node.
Specifically, the renaming rule may be a type of search replacement, a type of adding a serial number, a type of adding a character, a type of deleting a character, a type of moving a character, a type of letter case conversion, a type of chinese simplified and traditional conversion, a type of adding a music parameter, a type of adding an image parameter, a type of full angle half angle conversion, or the like, and a user may randomly arrange and combine the types of the renaming rule in the renaming rule setting window (as shown in fig. 2) to achieve a final renaming effect to be achieved.
When the type of the renaming rule of the current node of the second array is search replacement, the user can choose to modify the file name in one of the following three ways: and in the first mode, a naive character string matching algorithm is adopted, the content meeting the character search in the original file name is replaced by the character to be replaced, and the new file name is stored. And in the second mode, a plain character string matching algorithm is adopted, but when the English character is searched, the capital and the lowercase of the English character are ignored, and as long as one search succeeds (the capital or lowercase form of the English character can be found), the English character is replaced by the character to be replaced, and the character is stored as a new file name. And thirdly, querying the original file name by adopting a regular expression, replacing the searched content with the character to be replaced, and storing the character as a new file name. The renaming rule set window is shown in fig. 3.
In an embodiment, when the type of the renaming rule of the current node of the second array is the added sequence number, modifying the file name specifically includes: filling the digital serial number into the head or tail of the original file name, then combining the serial number with the original file name by a character string splicing method, and storing the file name added with the serial number as a new file name; meanwhile, after each file name is modified, the sequence number is added by 1, and a renaming rule setting window is shown in fig. 4.
In an embodiment, when the renaming rule of the current node of the second array is to add a character, modifying the file name specifically includes: dividing the whole character string of the file name into a front character string and a rear character string by taking the position where the character needs to be added as a boundary, filling the character to be added between the two character strings, and combining the character and the two character strings. The characters may be arabic numerals, english letters, separators (such as dash, period, space, underline, pause), and the like. In some embodiments, the added separator may also be used as an independent renaming rule (as shown in fig. 5), and a specific operation interface is set for the user to select the corresponding separator; and adding regular characters such as Arabic numerals is also taken as an independent renaming rule (as shown in FIG. 6) for the convenience of the user.
In an embodiment, when the type of the renaming rule of the current node of the second array is a delete character, for example, an english letter, a number, a special character, a serial number, a punctuation mark, a unit symbol, an arrow symbol, a drawing table symbol, etc. in the file name are deleted, the modified file name is specifically: the matched characters are deleted by using a naive character string matching algorithm, the file names left after deletion are new file names, and a renaming rule setting window is shown in fig. 7.
In one embodiment, when the type of the renaming rule of the current node of the second array is a mobile character, the file name renaming rule is modified as follows: splitting a character to be moved and characters positioned in front of and behind the character to be moved into a front character string, a character string to be moved and a rear character string, judging whether the digit of a moved target position is larger than the digit of an original position of the character to be moved, if so, splitting the rear character string into a first character string and a second character string by taking the target position as a boundary, filling the character to be moved between the first character string and the second character string, and combining the character to be moved. If not, the front character string is split into a third character string and a fourth character string by taking the target position as a boundary, the characters to be moved are filled between the third character string and the fourth character string and are combined, and the renaming rule setting window is shown in fig. 8. For example, when a character string B with a home position x needs to be moved to a target position y, the character string B and the character strings before and after the character string B are firstly split into a front character string a, a character string B to be moved and a rear character string C; then, judging whether y is larger than x, if so, splitting the character string C into front and back character strings C1 and C2 by taking y as a boundary, placing the character string B at the tail of the character string C1, finally merging the character strings into A C1B C2 character strings, and storing the character strings as new file names. If the number of the divided character strings is less than the number of the divided character strings, the character string A is divided into front and rear character strings A1 and A2 by taking y as a boundary, the character string B is placed at the tail part of the character string A1, and finally the character strings are combined into an A1B A2C character string and stored as a new file name.
In an embodiment, when the renaming rule of the current node of the second array is letter case conversion, modifying the file name specifically comprises: splitting the whole character string of the file name into a plurality of independent characters, judging whether each character is English a-Z or A-Z, if so, converting the corresponding character into capital or lowercase, then combining the converted independent characters, and setting a renaming rule window as shown in FIG. 9.
In one embodiment, when the renaming rule is a type of Chinese traditional/simplified conversion, OpenCC (OpenChinese Convert) is used to convert the Chinese character string from traditional/simplified to simplified/traditional. For example, a traditional body is converted into a simplified body, a simplified body is converted into a traditional body (hong Kong), a simplified body is converted into a traditional body (Taiwan), and a renaming rule setting window is shown in FIG. 10.
In an embodiment, when the type of the renaming rule of the current node of the second array is to add a music parameter, modifying the file name specifically includes: the attribute parameters of the file are searched by using the FFmpeg, the attribute parameters comprise an artist, a song title, an album, creation time and a music type, then the corresponding attribute parameters are added at the corresponding positions of the file name according to the renaming rule of the current node, and a renaming rule setting window is shown in fig. 11.
In an embodiment, when the type of the renaming rule of the current node of the second array is the add image parameter, modifying the file name specifically includes: adopting a picture api of the Aliskiu OSS to call a picture Exif (exchangeable image fileformat) attribute, wherein the attribute comprises a camera model, an image resolution X, an image resolution Y, creation time and the like, then adding corresponding attribute parameters at corresponding positions of the file name according to a renaming rule of a current node to modify the original file name, and setting a window of the renaming rule as shown in FIG. 12.
In an embodiment, when the type of the renaming rule of the current node of the second array is full angle and half angle conversion, the file name modification specifically includes: splitting the whole character string of the file name into a plurality of independent characters, then judging whether each character is a full-angle symbol or a half-angle symbol, if so, converting the corresponding characters, finally combining the converted independent characters, and setting a renaming rule setting window as shown in fig. 13.
Accordingly, the present invention also relates to an electronic device 200, as shown in fig. 14, comprising a processor 210, a memory 220, and a computer program, e.g. a file bulk renaming program, stored in the memory 220 and configured to be executed by the processor 210; the processor 210 executes the computer program to execute the file batch renaming method in the above embodiment. The electronic device 200 may be a single computer or a network of multiple computers, and may specifically be any computing device with data processing capability, such as a desktop computer, a notebook computer, and the like, and the electronic device 200 is not limited to include the processor 210 and the memory 220. Those skilled in the art will appreciate that the schematic diagram shown in fig. 14 is merely an example of the electronic device 200, and does not constitute a limitation of the electronic device 200, and may include more or less components than those shown, or combine some components, or different components, such as an input-output device, a network access device, a bus, etc.
Accordingly, the present invention further relates to a computer-readable storage medium, in which a computer program is stored, and when the computer program is executed by the processor 210, the file batch renaming method in the above embodiments is completed. Wherein the computer program comprises computer program code, which may be in the form of source code, object code, an executable file or some intermediate form, etc. The computer-readable storage medium may include: any entity or device capable of carrying computer program code, recording medium, U.S. disk, removable hard disk, magnetic disk, optical disk, computer memory, Read Only Memory (ROM), Random Access Memory (RAM), or the like.
The present invention has been described in connection with the preferred embodiments, but the present invention is not limited to the embodiments disclosed above, and is intended to cover various modifications, equivalent combinations, which are made in accordance with the spirit of the present invention.

Claims (10)

1. A file batch renaming method is characterized by comprising the following steps:
(1) acquiring a file batch renaming request;
(2) displaying a renaming rule setting window and acquiring a renaming rule set by a user;
(3) adding the selected file information in the file batch renaming request to a preset first array and adding a renaming rule set by a user to a preset second array;
(4) and traversing a second array, and modifying the file name of each file in the first array by adopting the renaming rule of the current node of the second array until the traversal of the second array is finished.
2. The file batch renaming method as claimed in claim 1, further comprising, after the step (4), the steps of:
(5) converting the first array into a JSON format and displaying, and displaying a file name modification confirmation window at the same time;
(6) and after the modification confirmation information is acquired, the JSON format is reversely converted into an array, and the modified file name of each file is stored.
3. The file batch renaming method of claim 1, further comprising, before step (3):
defining the first array and the second array.
4. The file batch renaming method according to claim 1, wherein when the renaming rule of the current node of the second array is the type of the added character, modifying the file name specifically comprises:
dividing the whole character string of the file name into a front character string and a rear character string by taking the position needing to be added with the character as a boundary;
filling characters to be added between the two character strings;
the character is merged with the two character strings.
5. The file batch renaming method as claimed in claim 1, wherein when the type of the renaming rule of the current node of the second array is letter case conversion, the modified file name is specifically:
splitting the whole character string of the file name into a plurality of independent characters;
judging whether each character is English a-Z or A-Z, if so, converting the corresponding character into capital or lowercase;
the converted individual characters are combined.
6. The file batch renaming method according to claim 1, wherein when the renaming rule of the current node of the second array is a mobile character, modifying the file name specifically comprises:
splitting a character to be moved and characters positioned in front of and behind the character to be moved into a front character string, a character string to be moved and a rear character string;
judging whether the digit of the moved target position is larger than the digit of the original position of the character to be moved, if so, splitting the rear character string into a first character string and a second character string by taking the target position as a boundary, and filling the character to be moved between the first character string and the second character string and combining the character to be moved; if not, splitting the former character string into a third character string and a fourth character string by taking the target position as a boundary, filling the character to be moved between the third character string and the fourth character string, and combining the character to be moved.
7. The file batch renaming method according to claim 1, wherein when the renaming rule of the current node of the second array is the type of the added music parameter, the modifying file name is specifically:
adopting FFmpeg to search attribute parameters of a file, wherein the attribute parameters comprise an artist, a song name, an album, creation time and a music type;
and adding corresponding attribute parameters at corresponding positions of the file names according to the renaming rule of the current node.
8. The file batch renaming method of claim 1, wherein when the renaming rule is of the type of traditional/simplified Chinese conversion, OpenCC is used to convert the Chinese character string from traditional/simplified to simplified/traditional.
9. An electronic device, comprising:
one or more processors;
a memory for storing one or more computer programs,
the method of bulk renaming files as claimed in any one of claims 1 to 8 when executed by the one or more processors executing the one or more computer programs.
10. A computer-readable storage medium, characterized in that it stores a computer program executable by a processor to perform the method of bulk renaming of files according to any one of claims 1 to 8.
CN202010659873.9A 2020-07-09 2020-07-09 File batch renaming method, electronic equipment and computer readable storage medium Pending CN111813747A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202010659873.9A CN111813747A (en) 2020-07-09 2020-07-09 File batch renaming method, electronic equipment and computer readable storage medium

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202010659873.9A CN111813747A (en) 2020-07-09 2020-07-09 File batch renaming method, electronic equipment and computer readable storage medium

Publications (1)

Publication Number Publication Date
CN111813747A true CN111813747A (en) 2020-10-23

Family

ID=72842750

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202010659873.9A Pending CN111813747A (en) 2020-07-09 2020-07-09 File batch renaming method, electronic equipment and computer readable storage medium

Country Status (1)

Country Link
CN (1) CN111813747A (en)

Cited By (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN113157651A (en) * 2021-03-23 2021-07-23 广州宸祺出行科技有限公司 Method, system, equipment and medium for renaming resource files of android engineering project in batch
CN113392075A (en) * 2021-06-29 2021-09-14 深圳市蓬莱产业科技有限公司 Multithreading collaborative file batch naming method
CN113448875A (en) * 2021-07-27 2021-09-28 中国工商银行股份有限公司 Method and device for processing annual terminal profit and loss statistical file of test environment
CN113535650A (en) * 2021-08-03 2021-10-22 统信软件技术有限公司 File naming method and computing device
CN115495911A (en) * 2022-09-26 2022-12-20 惠州市海葵信息技术有限公司 Model renaming method, device and storage medium

Citations (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103514231A (en) * 2012-06-29 2014-01-15 联想(北京)有限公司 File naming method and electronic device
CN105630818A (en) * 2014-10-31 2016-06-01 东莞宇龙通信科技有限公司 Method and device for renaming files in batches
CN109416611A (en) * 2016-07-01 2019-03-01 电子湾有限公司 Digital subscriber interface with items selection
CN109597794A (en) * 2018-12-05 2019-04-09 郑州云海信息技术有限公司 A kind of file management method, system and electronic equipment and storage medium
CN110096479A (en) * 2019-03-15 2019-08-06 平安科技(深圳)有限公司 Batch renaming method, apparatus, computer equipment and the storage medium of voice messaging
CN110660461A (en) * 2019-09-23 2020-01-07 广州市番禺区中心医院(广州市番禺区人民医院、广州市番禺区心血管疾病研究所) Cross-platform medical data information uploading system based on artificial intelligence
CN111198712A (en) * 2019-12-19 2020-05-26 贵阳语玩科技有限公司 Automatic replacement method for project file names in batches

Patent Citations (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103514231A (en) * 2012-06-29 2014-01-15 联想(北京)有限公司 File naming method and electronic device
CN105630818A (en) * 2014-10-31 2016-06-01 东莞宇龙通信科技有限公司 Method and device for renaming files in batches
CN109416611A (en) * 2016-07-01 2019-03-01 电子湾有限公司 Digital subscriber interface with items selection
CN109597794A (en) * 2018-12-05 2019-04-09 郑州云海信息技术有限公司 A kind of file management method, system and electronic equipment and storage medium
CN110096479A (en) * 2019-03-15 2019-08-06 平安科技(深圳)有限公司 Batch renaming method, apparatus, computer equipment and the storage medium of voice messaging
CN110660461A (en) * 2019-09-23 2020-01-07 广州市番禺区中心医院(广州市番禺区人民医院、广州市番禺区心血管疾病研究所) Cross-platform medical data information uploading system based on artificial intelligence
CN111198712A (en) * 2019-12-19 2020-05-26 贵阳语玩科技有限公司 Automatic replacement method for project file names in batches

Cited By (9)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN113157651A (en) * 2021-03-23 2021-07-23 广州宸祺出行科技有限公司 Method, system, equipment and medium for renaming resource files of android engineering project in batch
CN113157651B (en) * 2021-03-23 2024-02-20 广州宸祺出行科技有限公司 Method, system, equipment and medium for renaming resource files of android project in batches
CN113392075A (en) * 2021-06-29 2021-09-14 深圳市蓬莱产业科技有限公司 Multithreading collaborative file batch naming method
CN113392075B (en) * 2021-06-29 2022-02-11 深圳市蓬莱产业科技有限公司 Multithreading collaborative file batch naming method
CN113448875A (en) * 2021-07-27 2021-09-28 中国工商银行股份有限公司 Method and device for processing annual terminal profit and loss statistical file of test environment
CN113535650A (en) * 2021-08-03 2021-10-22 统信软件技术有限公司 File naming method and computing device
CN113535650B (en) * 2021-08-03 2024-06-04 统信软件技术有限公司 File naming method and computing device
CN115495911A (en) * 2022-09-26 2022-12-20 惠州市海葵信息技术有限公司 Model renaming method, device and storage medium
CN115495911B (en) * 2022-09-26 2024-02-06 惠州市海葵信息技术有限公司 Model renaming method, device and storage medium

Similar Documents

Publication Publication Date Title
CN111813747A (en) File batch renaming method, electronic equipment and computer readable storage medium
CN111753499B (en) Method for merging and displaying electronic form and OFD format file and generating directory
US8515984B2 (en) Extensible search term suggestion engine
US9928242B2 (en) Managing the content of shared slide presentations
JP4101239B2 (en) Automatic query clustering
US10489489B2 (en) Automatically classifying and presenting digital fonts
CN108664142B (en) Input method with inter-document self-learning function
CN107203498A (en) A kind of method, system and its user terminal and server for creating e-book
WO2007004408A1 (en) Information processing device, information processing method, and information processing program
CN114297143A (en) File searching method, file displaying device and mobile terminal
US9063949B2 (en) Inferring a sequence of editing operations to facilitate merging versions of a shared document
JP4904920B2 (en) Template document creation program, template document creation method, and template document creation device
KR20200013298A (en) Apparatus for managing document utilizing of morphological analysis and operating method thereof
US20120192046A1 (en) Generation of a source complex document to facilitate content access in complex document creation
JP2020160494A (en) Information processing apparatus, document management system and program
CN115713572A (en) Text image generation method and device, electronic equipment and readable storage medium
CN112989011B (en) Data query method, data query device and electronic equipment
CN113761213B (en) Knowledge graph-based data query system, method and terminal equipment
CN113378526A (en) PDF paragraph processing method, device, storage medium and equipment
CN113221572A (en) Information processing method, device, equipment and medium
CN113157964A (en) Method and device for searching data set through voice and electronic equipment
CN116016553B (en) File sharing method and device based on network disk, network disk and storage medium
JP5563706B1 (en) Document file generation apparatus, document file generation method, and document file generation program
US20230359325A1 (en) User interface for editing of a composite document through intelligently zoomed previews
US8688668B1 (en) Method and apparatus for improved navigation among search results

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination