-
Notifications
You must be signed in to change notification settings - Fork 407
Added solution #336
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
YevheniiKa
wants to merge
4
commits into
mate-academy:master
Choose a base branch
from
YevheniiKa:develop
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Added solution #336
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| name: Test | ||
|
|
||
| on: | ||
| pull_request: | ||
| branches: [ master ] | ||
|
|
||
| jobs: | ||
| build: | ||
|
|
||
| runs-on: ubuntu-latest | ||
|
|
||
| strategy: | ||
| matrix: | ||
| node-version: [20.x] | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| - name: Use Node.js ${{ matrix.node-version }} | ||
| uses: actions/setup-node@v1 | ||
| with: | ||
| node-version: ${{ matrix.node-version }} | ||
| - run: npm install | ||
| - run: npm test |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,66 @@ | ||
| // write code here | ||
| /* eslint-disable no-console */ | ||
| 'use strict'; | ||
|
|
||
| const fs = require('fs/promises'); | ||
| const path = require('path'); | ||
|
|
||
| const [, , source, dest] = process.argv; | ||
|
|
||
| if (!source) { | ||
| console.error('Please provide source path'); | ||
YevheniiKa marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } | ||
|
|
||
| if (!dest) { | ||
| console.error('Please provide destination path'); | ||
| } | ||
|
|
||
| if (source === dest) { | ||
| process.exit(0); | ||
| } | ||
|
|
||
| (async () => { | ||
| try { | ||
| const srcStat = await fs.stat(source); | ||
|
|
||
| if (!srcStat.isFile()) { | ||
| console.error('Source is not a file'); | ||
YevheniiKa marked this conversation as resolved.
Show resolved
Hide resolved
YevheniiKa marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } | ||
|
|
||
| let target = dest; | ||
|
|
||
| if (dest.endsWith('/')) { | ||
| const dirStat = await fs.stat(dest); | ||
|
|
||
| if (!dirStat.isDirectory()) { | ||
| console.error('Destination directory does not exist'); | ||
YevheniiKa marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } | ||
|
|
||
| target = path.join(dest, path.basename(source)); | ||
| } else { | ||
| try { | ||
| const destStat = await fs.stat(dest); | ||
|
|
||
| if (destStat.isDirectory()) { | ||
| target = path.join(dest, path.basename(source)); | ||
| } | ||
| } catch { | ||
| const parentDir = path.dirname(dest); | ||
|
|
||
| try { | ||
| const parentStat = await fs.stat(parentDir); | ||
|
|
||
| if (!parentStat.isDirectory()) { | ||
| console.error('Destination directory does not exist'); | ||
| } | ||
| } catch { | ||
| console.error('Destination directory does not exist'); | ||
| } | ||
| } | ||
| } | ||
|
|
||
| await fs.rename(source, target); | ||
| console.log(`File moved from "${source}" to "${target}"`); | ||
| } catch (err) { | ||
| console.error(err.message); | ||
YevheniiKa marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } | ||
| })(); | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| Numquam universe avarus. Cariosus articulus aliquid. Terra defendo caelestis trado una cupiditas absconditus agnitio depopulo ubi. | ||
| Sophismata coniuratio bellicus comptus confido thymbra voluptatibus. Spiritus solum quo cicuta curo terga abutor cupiditas accedo. Vulnero velociter coepi coaegresco itaque atrox sursum colo thesis terra. | ||
| Bonus consequatur comptus adstringo asporto tardus. Vis xiphias argentum veritatis beatae attonbitus labore causa terror cursus. Verbera suspendo patior degusto ago articulus. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.