Can Notepad++ convert multiple opened files to ANSI (encoding)?
I have 50 text files which need to be converted from utf-8 bom to ANSI. In Notepad++ We can do it with single file, but I want all opened files to be converted to ANSI in one short way. Is there any option there?
notepad++ encoding
add a comment |
I have 50 text files which need to be converted from utf-8 bom to ANSI. In Notepad++ We can do it with single file, but I want all opened files to be converted to ANSI in one short way. Is there any option there?
notepad++ encoding
It seems that u need a way in command line to do it. Have you looked for a powershell solution?
– chingNotCHing
Dec 29 '16 at 11:11
i did not try., im not a power user or script writer. just looking for a tool that could do this job. any other way?. if it can be done in command line please let me know how to do it.
– Abd
Dec 29 '16 at 19:54
add a comment |
I have 50 text files which need to be converted from utf-8 bom to ANSI. In Notepad++ We can do it with single file, but I want all opened files to be converted to ANSI in one short way. Is there any option there?
notepad++ encoding
I have 50 text files which need to be converted from utf-8 bom to ANSI. In Notepad++ We can do it with single file, but I want all opened files to be converted to ANSI in one short way. Is there any option there?
notepad++ encoding
notepad++ encoding
edited Apr 4 '17 at 12:57
karel
9,18793138
9,18793138
asked Dec 29 '16 at 7:06
AbdAbd
4427
4427
It seems that u need a way in command line to do it. Have you looked for a powershell solution?
– chingNotCHing
Dec 29 '16 at 11:11
i did not try., im not a power user or script writer. just looking for a tool that could do this job. any other way?. if it can be done in command line please let me know how to do it.
– Abd
Dec 29 '16 at 19:54
add a comment |
It seems that u need a way in command line to do it. Have you looked for a powershell solution?
– chingNotCHing
Dec 29 '16 at 11:11
i did not try., im not a power user or script writer. just looking for a tool that could do this job. any other way?. if it can be done in command line please let me know how to do it.
– Abd
Dec 29 '16 at 19:54
It seems that u need a way in command line to do it. Have you looked for a powershell solution?
– chingNotCHing
Dec 29 '16 at 11:11
It seems that u need a way in command line to do it. Have you looked for a powershell solution?
– chingNotCHing
Dec 29 '16 at 11:11
i did not try., im not a power user or script writer. just looking for a tool that could do this job. any other way?. if it can be done in command line please let me know how to do it.
– Abd
Dec 29 '16 at 19:54
i did not try., im not a power user or script writer. just looking for a tool that could do this job. any other way?. if it can be done in command line please let me know how to do it.
– Abd
Dec 29 '16 at 19:54
add a comment |
1 Answer
1
active
oldest
votes
Suppose that your utf8bom files are in c:temputf8
I am saving the ansi files to c:tempansi
At command line,
> powershell
PS> get-item c:temputf8*.* | foreach-object {get-content $_ | out-file ("c:tempansi" + $_.Name) -encoding default}
PS> exit
>
What it does is that for each file in c:temputf8
, get its content and output to a file with the same filename in c:tempansi
with the Windows system default encoding, which is equivalent to ANSI you meant.
get-content
command here can read the text without you specifying utf8 with or without bom.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1161277%2fcan-notepad-convert-multiple-opened-files-to-ansi-encoding%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Suppose that your utf8bom files are in c:temputf8
I am saving the ansi files to c:tempansi
At command line,
> powershell
PS> get-item c:temputf8*.* | foreach-object {get-content $_ | out-file ("c:tempansi" + $_.Name) -encoding default}
PS> exit
>
What it does is that for each file in c:temputf8
, get its content and output to a file with the same filename in c:tempansi
with the Windows system default encoding, which is equivalent to ANSI you meant.
get-content
command here can read the text without you specifying utf8 with or without bom.
add a comment |
Suppose that your utf8bom files are in c:temputf8
I am saving the ansi files to c:tempansi
At command line,
> powershell
PS> get-item c:temputf8*.* | foreach-object {get-content $_ | out-file ("c:tempansi" + $_.Name) -encoding default}
PS> exit
>
What it does is that for each file in c:temputf8
, get its content and output to a file with the same filename in c:tempansi
with the Windows system default encoding, which is equivalent to ANSI you meant.
get-content
command here can read the text without you specifying utf8 with or without bom.
add a comment |
Suppose that your utf8bom files are in c:temputf8
I am saving the ansi files to c:tempansi
At command line,
> powershell
PS> get-item c:temputf8*.* | foreach-object {get-content $_ | out-file ("c:tempansi" + $_.Name) -encoding default}
PS> exit
>
What it does is that for each file in c:temputf8
, get its content and output to a file with the same filename in c:tempansi
with the Windows system default encoding, which is equivalent to ANSI you meant.
get-content
command here can read the text without you specifying utf8 with or without bom.
Suppose that your utf8bom files are in c:temputf8
I am saving the ansi files to c:tempansi
At command line,
> powershell
PS> get-item c:temputf8*.* | foreach-object {get-content $_ | out-file ("c:tempansi" + $_.Name) -encoding default}
PS> exit
>
What it does is that for each file in c:temputf8
, get its content and output to a file with the same filename in c:tempansi
with the Windows system default encoding, which is equivalent to ANSI you meant.
get-content
command here can read the text without you specifying utf8 with or without bom.
answered Dec 30 '16 at 3:40
chingNotCHingchingNotCHing
621311
621311
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1161277%2fcan-notepad-convert-multiple-opened-files-to-ansi-encoding%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
It seems that u need a way in command line to do it. Have you looked for a powershell solution?
– chingNotCHing
Dec 29 '16 at 11:11
i did not try., im not a power user or script writer. just looking for a tool that could do this job. any other way?. if it can be done in command line please let me know how to do it.
– Abd
Dec 29 '16 at 19:54